ClassRef constructor

ClassRef({
  1. String? name,
  2. LibraryRef? library,
  3. String? id,
  4. SourceLocation? location,
  5. List<InstanceRef>? typeParameters,
})

Implementation

ClassRef({
  this.name,
  this.library,
  super.id,
  this.location,
  this.typeParameters,
});