Event constructor

Event(
  1. {String? kind,
  2. int? timestamp,
  3. IsolateGroupRef? isolateGroup,
  4. IsolateRef? isolate,
  5. VMRef? vm,
  6. Breakpoint? breakpoint,
  7. List<Breakpoint>? pauseBreakpoints,
  8. Frame? topFrame,
  9. InstanceRef? exception,
  10. String? bytes,
  11. InstanceRef? inspectee,
  12. String? gcType,
  13. String? extensionRPC,
  14. String? extensionKind,
  15. ExtensionData? extensionData,
  16. List<TimelineEvent>? timelineEvents,
  17. List<String>? updatedStreams,
  18. bool? atAsyncSuspension,
  19. String? status,
  20. LogRecord? logRecord,
  21. String? service,
  22. String? method,
  23. String? alias,
  24. String? flag,
  25. String? newValue,
  26. bool? last,
  27. String? updatedTag,
  28. String? previousTag,
  29. CpuSamplesEvent? cpuSamples,
  30. ByteData? data}
)

Implementation

Event({
  this.kind,
  this.timestamp,
  this.isolateGroup,
  this.isolate,
  this.vm,
  this.breakpoint,
  this.pauseBreakpoints,
  this.topFrame,
  this.exception,
  this.bytes,
  this.inspectee,
  this.gcType,
  this.extensionRPC,
  this.extensionKind,
  this.extensionData,
  this.timelineEvents,
  this.updatedStreams,
  this.atAsyncSuspension,
  this.status,
  this.logRecord,
  this.service,
  this.method,
  this.alias,
  this.flag,
  this.newValue,
  this.last,
  this.updatedTag,
  this.previousTag,
  this.cpuSamples,
  this.data,
});