SchemaType constructor

const SchemaType({
  1. required bool isList,
  2. required String type,
  3. required FieldLocation location,
  4. FieldNamespace? namespace,
})

Create a new schema arg input type.

Implementation

const SchemaType({
  required this.isList,
  required this.type,
  required this.location,
  this.namespace,
});