Type constructor

Type(
  1. String name, {
  2. String? libraryUri,
  3. List<Type> generics = const [],
  4. bool nullable = false,
})

Implementation

Type(this.name,
    {String? libraryUri, this.generics = const [], this.nullable = false})
    : super(libraryUri: libraryUri);