TypeDeclaration constructor

const TypeDeclaration({
  1. required String baseName,
  2. required bool isNullable,
  3. Enum? associatedEnum,
  4. Class? associatedClass,
  5. AstProxyApi? associatedProxyApi,
  6. 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>[],
});