SchemaField constructor

const SchemaField({
  1. required String name,
  2. bool? isNullable,
  3. required OutputTypeRef outputType,
  4. required List<SchemaArg> args,
  5. Deprecation? deprecation,
  6. String? documentation,
})

Implementation

const factory SchemaField({
  required String name,
  bool? isNullable,
  required OutputTypeRef outputType,
  required List<SchemaArg> args,
  Deprecation? deprecation,
  String? documentation,
}) = _SchemaField;