123456789101112131415161718 |
- import 'package:fis_lib_report/report/interfaces/element.dart';
- import 'package:fis_lib_report/report/interfaces/staticText.dart';
- import 'package:fis_lib_report/report/text_element.dart';
- class StaticText extends TextElement implements IStaticText {
- @override
- bool? ignoreUndo;
- @override
- String? text;
- StaticText.fromJson(Map<String, dynamic> json, {IElement? parent})
- : super.fromJson(json) {
- this.parent = parent;
- ignoreUndo = json['IgnoreUndo'];
- text = json['Text'];
- }
- }
|