CompileTypeMetadata constructor

CompileTypeMetadata({
  1. required String name,
  2. String? moduleUrl,
  3. String? prefix,
  4. bool isHost = false,
  5. Type? value,
  6. List<OutputType> typeArguments = const [],
  7. List<TypeParameter> typeParameters = const [],
  8. List<CompileDiDependencyMetadata> diDeps = const [],
})

Implementation

CompileTypeMetadata({
  required this.name,
  this.moduleUrl,
  this.prefix,
  this.isHost = false,
  this.value,
  this.typeArguments = const [],
  this.typeParameters = const [],
  this.diDeps = const [],
});