OutputType constructor

const OutputType({
  1. required String name,
  2. required List<OutputField> fields,
})

Implementation

const OutputType({
  required this.name,
  required this.fields,
});