TypeParameters constructor Null safety

TypeParameters(
  1. {List<String>? names,
  2. TypeArgumentsRef? bounds,
  3. TypeArgumentsRef? defaults}
)

Implementation

TypeParameters({
  this.names,
  this.bounds,
  this.defaults,
});