SyntheticNamedType constructor

const SyntheticNamedType(
  1. String name,
  2. Resolver resolver, {
  3. required bool isNullable,
})

Creates a new SyntheticNamedType with the given name and resolver.

Implementation

const SyntheticNamedType(
  this.name,
  this.resolver, {
  required super.isNullable,
});