toJson method

Map<String, dynamic> toJson()

Implementation

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