InstanceRef constructor
InstanceRef({ - String? kind,
- int? identityHashCode,
- ClassRef? classRef,
- required String id,
- String? valueAsString,
- bool? valueAsStringIsTruncated,
- int? length,
- String? name,
- ClassRef? typeClass,
- ClassRef? parameterizedClass,
- InstanceRef? returnType,
- List<Parameter>? parameters,
- List<InstanceRef>? typeParameters,
- InstanceRef? pattern,
- FuncRef? closureFunction,
- ContextRef? closureContext,
- InstanceRef? closureReceiver,
- int? portId,
- InstanceRef? allocationLocation,
- String? debugName,
- String? label,
})
Implementation
InstanceRef({
this.kind,
this.identityHashCode,
this.classRef,
required String id,
this.valueAsString,
this.valueAsStringIsTruncated,
this.length,
this.name,
this.typeClass,
this.parameterizedClass,
this.returnType,
this.parameters,
this.typeParameters,
this.pattern,
this.closureFunction,
this.closureContext,
this.closureReceiver,
this.portId,
this.allocationLocation,
this.debugName,
this.label,
}) : super(
id: id,
);