toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final differenceCount = this.differenceCount;
  final errorCount = this.errorCount;
  final logCount = this.logCount;
  final newestDate = this.newestDate;
  final oldestDate = this.oldestDate;
  final unchangedCount = this.unchangedCount;
  return {
    'differenceCount': ?differenceCount,
    'errorCount': ?errorCount,
    'logCount': ?logCount,
    'newestDate': ?newestDate,
    'oldestDate': ?oldestDate,
    'unchangedCount': ?unchangedCount,
  };
}