Field constructor

Field({
  1. required int type,
  2. String? name,
  3. String? typeName,
  4. List<String>? docs,
})

Implementation

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