InterfaceTypeImpl constructor
InterfaceTypeImpl(
- String name,
- DeclarationRef declarationRef,
- ResolverImpl resolver, {
- bool isNullable = false,
- List<
DartType> typeArguments = const <DartType>[], - InterfaceElement? element,
Creates a new InterfaceTypeImpl with the given properties.
Implementation
InterfaceTypeImpl(
this.name,
this.declarationRef,
this.resolver, {
super.isNullable = false,
this.typeArguments = const <DartType>[],
InterfaceElement? element,
}) : _element = element;