annot_bean.dart 863 B

123456789101112131415161718192021222324252627
  1. import 'package:flutter/material.dart';
  2. import 'package:kmpdfkit_demo/widgets/contains.dart';
  3. import 'annot_attribute_bean.dart';
  4. /// annot_bean.dart
  5. /// Copyright © 2014-2023 PDF Technologies, Inc. All Rights Reserved.
  6. ///
  7. /// THIS SOURCE CODE AND ANY ACCOMPANYING DOCUMENTATION ARE PROTECTED BY INTERNATIONAL COPYRIGHT LAW
  8. /// AND MAY NOT BE RESOLD OR REDISTRIBUTED. USAGE IS BOUND TO THE ComPDFKit LICENSE AGREEMENT.
  9. /// UNAUTHORIZED REPRODUCTION OR DISTRIBUTION IS SUBJECT TO CIVIL AND CRIMINAL PENALTIES.
  10. /// This notice may not be removed from this file.
  11. class AnnotBean {
  12. AnnotationType annotType;
  13. String? normalImagePath;
  14. String? selectImagePath;
  15. AnnotAttributeBean attributeBean;
  16. AnnotBean(
  17. {required this.annotType,
  18. this.normalImagePath,
  19. this.selectImagePath,
  20. required this.attributeBean,
  21. });
  22. }