inputText.dart 334 B

1234567891011
  1. import 'package:fis_lib_report/report/interfaces/inputText.dart';
  2. import 'package:fis_lib_report/report/text_element.dart';
  3. class InputText extends TextElement implements IInputText {
  4. @override
  5. bool? isReadOnly;
  6. InputText.fromJson(Map<String, dynamic> json) : super.fromJson(json) {
  7. isReadOnly = json['IsReadOnly'];
  8. }
  9. }