StoppedEventBody.fromMap constructor

StoppedEventBody.fromMap(
  1. Map<String, Object?> obj
)

Implementation

StoppedEventBody.fromMap(Map<String, Object?> obj)
    : allThreadsStopped = obj['allThreadsStopped'] as bool?,
      description = obj['description'] as String?,
      hitBreakpointIds = (obj['hitBreakpointIds'] as List?)
          ?.map((item) => item as int)
          .toList(),
      preserveFocusHint = obj['preserveFocusHint'] as bool?,
      reason = obj['reason'] as String,
      text = obj['text'] as String?,
      threadId = obj['threadId'] as int?;