TextFieldSchemaModel constructor

TextFieldSchemaModel(
  1. SchemaType type,
  2. String name,
  3. InputType inputType,
  4. String key, {
  5. bool multyLine = false,
  6. bool essencial = false,
})

Implementation

TextFieldSchemaModel(
    SchemaType type, String name, this.inputType, String key,
    {this.multyLine = false, bool essencial = false})
    : super(type, name, key, essencial: essencial);