- import 'package:fis_lib_report/report/staticText.dart';
- import 'package:fis_lib_report/report_info/text_element_info.dart';
- class StaticTextInfo extends TextElementInfo {
- String? text;
- StaticTextInfo.fromElement(StaticText element) : super.fromElement(element) {
- text = element.text;
- }
- }
|