FieldDefinition constructor

const FieldDefinition({
  1. required Type type,
  2. required String name,
  3. bool isRequired = true,
  4. String? qualifier,
})

Implementation

const FieldDefinition({
  required this.type,
  required this.name,
  this.isRequired = true,
  this.qualifier,
});