toJson method

Map<String, dynamic> toJson()

Implementation

Map<String, dynamic> toJson() {
  return {
    'callFrameId': callFrameId.toJson(),
    'functionName': functionName,
    'location': location.toJson(),
    'scopeChain': scopeChain.map((e) => e.toJson()).toList(),
    'this': this$.toJson(),
    if (functionLocation != null)
      'functionLocation': functionLocation!.toJson(),
    if (returnValue != null) 'returnValue': returnValue!.toJson(),
    if (canBeRestarted != null) 'canBeRestarted': canBeRestarted,
  };
}