FormField constructor

FormField({
  1. String? fielId,
  2. String? inputValidation,
  3. String? label,
  4. String? placeholder,
  5. bool? required,
  6. String? type,
  7. String? validationText,
})

Implementation

FormField(
    {this.fielId,
    this.inputValidation,
    this.label,
    this.placeholder,
    this.required,
    this.type,
    this.validationText});