toJson method

Map<String, dynamic> toJson()

Implementation

Map<String, dynamic> toJson() {
  return {
    'functionName': functionName,
    'ranges': ranges.map((e) => e.toJson()).toList(),
    'isBlockCoverage': isBlockCoverage,
  };
}