GSEmailModel constructor

GSEmailModel(
  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. dynamic maxLength,
  13. dynamic weight,
  14. dynamic showTitle,
  15. String? hint}
)

Implementation

GSEmailModel(
    {type,
    tag,
    title,
    errorMessage,
    helpMessage,
    prefixWidget,
    postfixWidget,
    required,
    status,
    value,
    validateRegEx,
    maxLength,
    weight,
    showTitle,
    this.hint})
    : 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,
      );