static_text.dart 508 B

123456789101112131415161718
  1. import 'package:fis_lib_report/report/interfaces/element.dart';
  2. import 'package:fis_lib_report/report/interfaces/staticText.dart';
  3. import 'package:fis_lib_report/report/text_element.dart';
  4. class StaticText extends TextElement implements IStaticText {
  5. @override
  6. bool? ignoreUndo;
  7. @override
  8. String? text;
  9. StaticText.fromJson(Map<String, dynamic> json, {IElement? parent})
  10. : super.fromJson(json) {
  11. this.parent = parent;
  12. ignoreUndo = json['IgnoreUndo'];
  13. text = json['Text'];
  14. }
  15. }