TypeAliasTypeImpl constructor

TypeAliasTypeImpl(
  1. String name,
  2. DeclarationRef declarationRef,
  3. ResolverImpl resolver, {
  4. bool isNullable = false,
  5. List<DartType> typeArguments = const <DartType>[],
})

Creates a new TypeAliasTypeImpl with the given properties.

Implementation

TypeAliasTypeImpl(
  this.name,
  this.declarationRef,
  this.resolver, {
  super.isNullable = false,
  this.typeArguments = const <DartType>[],
});