toJson method

Map<String, dynamic> toJson()

Implementation

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