GSTextPlainModel constructor

GSTextPlainModel(
  1. {dynamic type,
  2. dynamic tag,
  3. dynamic title,
  4. dynamic errorMessage,
  5. dynamic helpMessage,
  6. dynamic prefixWidget,
  7. dynamic postfixWidget,
  8. dynamic required,
  9. dynamic status,
  10. dynamic value,
  11. dynamic validateRegEx,
  12. int? maxLength,
  13. dynamic weight,
  14. dynamic showTitle,
  15. int? minLine,
  16. int? maxLine,
  17. String? hint,
  18. bool? showCounter}
)

Implementation

GSTextPlainModel(
    {type,
    tag,
    title,
    errorMessage,
    helpMessage,
    prefixWidget,
    postfixWidget,
    required,
    status,
    value,
    validateRegEx,
    this.maxLength,
    weight,
    showTitle,
    this.minLine,
    this.maxLine,
    this.hint,
    this.showCounter})
    : super(
        type: type,
        tag: tag,
        title: title,
        errorMessage: errorMessage,
        helpMessage: helpMessage,
        prefixWidget: prefixWidget,
        postfixWidget: postfixWidget,
        required: required,
        status: status,
        defaultValue: value,
        validateRegEx: validateRegEx,
        weight: weight,
        focusNode: FocusNode(),
        showTitle: showTitle,
      );