StoppedEventBody constructor

StoppedEventBody({
  1. bool? allThreadsStopped,
  2. String? description,
  3. List<int>? hitBreakpointIds,
  4. bool? preserveFocusHint,
  5. required String reason,
  6. String? text,
  7. int? threadId,
})

Implementation

StoppedEventBody({
  this.allThreadsStopped,
  this.description,
  this.hitBreakpointIds,
  this.preserveFocusHint,
  required this.reason,
  this.text,
  this.threadId,
});