1234567891011121314151617 |
- import 'package:flutter/material.dart';
- import 'package:kmpdfkit_demo/widgets/constains.dart';
- class AnnotBean {
- AnnotType annotType;
- String normalImagePath;
- String selectImagePath;
- int annotColor;
- int annotColorAlpha;
- AnnotBean(
- {required this.annotType,
- required this.normalImagePath,
- required this.selectImagePath,
- required this.annotColor,
- required this.annotColorAlpha});
- }
|