Field constructor

Field(
  1. String type,
  2. String name,
  3. String rawName,
  4. bool isLate,
  5. bool nullable,
)

Implementation

Field(this.type, String name, this.rawName, this.isLate, this.nullable) {
  this.name = name;
}