toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final coverageScore = this.coverageScore;
  final routeGroup = this.routeGroup;
  final transitions = this.transitions;
  return {
    'coverageScore': ?coverageScore,
    'routeGroup': ?routeGroup,
    'transitions': ?transitions,
  };
}