toJson method

Map<String, Object?> toJson()

Implementation

Map<String, Object?> toJson() => {
      if (breakpoints != null) 'breakpoints': breakpoints,
      if (lines != null) 'lines': lines,
      'source': source,
      if (sourceModified != null) 'sourceModified': sourceModified,
    };