ClassRef constructor

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

Implementation

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