annot_bean.dart 423 B

1234567891011121314151617
  1. import 'package:flutter/material.dart';
  2. import 'package:kmpdfkit_demo/widgets/constains.dart';
  3. class AnnotBean {
  4. AnnotType annotType;
  5. String normalImagePath;
  6. String selectImagePath;
  7. int annotColor;
  8. int annotColorAlpha;
  9. AnnotBean(
  10. {required this.annotType,
  11. required this.normalImagePath,
  12. required this.selectImagePath,
  13. required this.annotColor,
  14. required this.annotColorAlpha});
  15. }