TypeDeclaration constructor
const
TypeDeclaration({
- required String baseName,
- required bool isNullable,
- Enum? associatedEnum,
- Class? associatedClass,
- AstProxyApi? associatedProxyApi,
- List<
TypeDeclaration> typeArguments = const <TypeDeclaration>[],
Constructor for TypeDeclaration.
Implementation
const TypeDeclaration({
required this.baseName,
required this.isNullable,
this.associatedEnum,
this.associatedClass,
this.associatedProxyApi,
this.typeArguments = const <TypeDeclaration>[],
});