TypeParameters constructor

TypeParameters(
  1. {InstanceRef? names,
  2. TypeArgumentsRef? bounds,
  3. TypeArgumentsRef? defaults,
  4. required String id}
)

Implementation

TypeParameters({
  this.names,
  this.bounds,
  this.defaults,
  required String id,
}) : super(
        id: id,
      );