input_text_info.dart 532 B

12345678910111213141516
  1. import 'package:fis_lib_report/report/inputText.dart';
  2. import 'package:fis_lib_report/report/interfaces/element.dart';
  3. import 'package:fis_lib_report/report/interfaces/inputText.dart';
  4. import 'package:fis_lib_report/report/text_element.dart';
  5. import 'package:fis_lib_report/report_info/text_element_info.dart';
  6. class InputTextInfo extends TextElementInfo {
  7. bool? isReadOnly;
  8. String? text;
  9. InputTextInfo.fromElement(InputText element) : super.fromElement(element) {
  10. isReadOnly = element.isReadOnly;
  11. text = '';
  12. }
  13. }