GSTextPlainModel constructor
GSTextPlainModel(- {dynamic type,
- dynamic tag,
- dynamic title,
- dynamic errorMessage,
- dynamic helpMessage,
- dynamic prefixWidget,
- dynamic postfixWidget,
- dynamic required,
- dynamic status,
- dynamic value,
- dynamic validateRegEx,
- int? maxLength,
- dynamic weight,
- dynamic showTitle,
- int? minLine,
- int? maxLine,
- String? hint,
- 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,
);