import 'package:fis_lib_report/report/interfaces/inputText.dart';
import 'package:fis_lib_report/report/text_element.dart';

class InputText extends TextElement implements IInputText {
  @override
  bool? isReadOnly;

  InputText.fromJson(Map<String, dynamic> json) : super.fromJson(json) {
    isReadOnly = json['IsReadOnly'];
  }
}