Field constructor

Field({
  1. required String name,
  2. Type? type,
  3. required String typeName,
})

Implementation

Field({
  required this.name,
  this.type,
  required this.typeName,
});