Type constructor

Type({
  1. List<Field>? fields,
  2. String? name,
  3. String? primitive,
})

Implementation

Type({
  this.fields,
  this.name,
  this.primitive,
});