TypeParameters constructor
- InstanceRef? names,
 - TypeArgumentsRef? bounds,
 - TypeArgumentsRef? defaults,
 - required String id,
 
Implementation
TypeParameters({
  this.names,
  this.bounds,
  this.defaults,
  required String id,
}) : super(
        id: id,
      );