toJson method

Map<String, dynamic> toJson()

Implementation

Map<String, dynamic> toJson() {
  return {
    'callFrame': callFrame.toJson(),
    'selfSize': selfSize,
    'id': id,
    'children': children.map((e) => e.toJson()).toList(),
  };
}