Field constructor

const Field(
  1. String name, {
  2. bool required = false,
  3. bool email = false,
  4. bool isInt = false,
  5. int? maxLength,
})

Implementation

const Field(
  this.name, {
  this.required = false,
  this.email = false,
  this.isInt = false,
  this.maxLength,
});