toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final compliant = this.compliant;
  final errors = this.errors;
  final noncompliant = this.noncompliant;
  final scanned = this.scanned;
  final unenforced = this.unenforced;
  return {
    'compliant': ?compliant,
    'errors': ?errors,
    'noncompliant': ?noncompliant,
    'scanned': ?scanned,
    'unenforced': ?unenforced,
  };
}