Field constructor

const Field({
  1. String? fieldName,
  2. String? fieldType,
  3. bool? nullable,
})

Implementation

const Field({
  this.fieldName,
  this.fieldType,
  this.nullable,
});