staticText.dart 392 B

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