toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final acknowledgedResourceViolationCount =
      this.acknowledgedResourceViolationCount;
  final acknowledgedViolationCount = this.acknowledgedViolationCount;
  final activeResourceViolationCount = this.activeResourceViolationCount;
  final activeViolationCount = this.activeViolationCount;
  return {
    'acknowledgedResourceViolationCount': ?acknowledgedResourceViolationCount,
    'acknowledgedViolationCount': ?acknowledgedViolationCount,
    'activeResourceViolationCount': ?activeResourceViolationCount,
    'activeViolationCount': ?activeViolationCount,
  };
}