Instance constructor

Instance({
  1. String? kind,
  2. int? identityHashCode,
  3. ClassRef? classRef,
  4. required String id,
  5. String? valueAsString,
  6. bool? valueAsStringIsTruncated,
  7. int? length,
  8. int? offset,
  9. int? count,
  10. String? name,
  11. ClassRef? typeClass,
  12. ClassRef? parameterizedClass,
  13. InstanceRef? returnType,
  14. List<Parameter>? parameters,
  15. List<InstanceRef>? typeParameters,
  16. List<BoundField>? fields,
  17. List? elements,
  18. List<MapAssociation>? associations,
  19. String? bytes,
  20. ObjRef? mirrorReferent,
  21. InstanceRef? pattern,
  22. FuncRef? closureFunction,
  23. ContextRef? closureContext,
  24. InstanceRef? closureReceiver,
  25. bool? isCaseSensitive,
  26. bool? isMultiLine,
  27. ObjRef? propertyKey,
  28. ObjRef? propertyValue,
  29. ObjRef? target,
  30. TypeArgumentsRef? typeArguments,
  31. int? parameterIndex,
  32. InstanceRef? targetType,
  33. InstanceRef? bound,
  34. int? portId,
  35. InstanceRef? allocationLocation,
  36. String? debugName,
  37. String? label,
  38. InstanceRef? callback,
  39. InstanceRef? callbackAddress,
  40. InstanceRef? allEntries,
  41. InstanceRef? value,
  42. InstanceRef? token,
  43. InstanceRef? detach,
})

Implementation

Instance({
  this.kind,
  this.identityHashCode,
  this.classRef,
  required String id,
  this.valueAsString,
  this.valueAsStringIsTruncated,
  this.length,
  this.offset,
  this.count,
  this.name,
  this.typeClass,
  this.parameterizedClass,
  this.returnType,
  this.parameters,
  this.typeParameters,
  this.fields,
  this.elements,
  this.associations,
  this.bytes,
  this.mirrorReferent,
  this.pattern,
  this.closureFunction,
  this.closureContext,
  this.closureReceiver,
  this.isCaseSensitive,
  this.isMultiLine,
  this.propertyKey,
  this.propertyValue,
  this.target,
  this.typeArguments,
  this.parameterIndex,
  this.targetType,
  this.bound,
  this.portId,
  this.allocationLocation,
  this.debugName,
  this.label,
  this.callback,
  this.callbackAddress,
  this.allEntries,
  this.value,
  this.token,
  this.detach,
}) : super(
        id: id,
        classRef: classRef,
      );