toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final checkTime = this.checkTime;
  final desired = this.desired;
  final discovered = this.discovered;
  final domainName = this.domainName;
  return {
    'checkTime': ?checkTime,
    'desired': ?desired,
    'discovered': ?discovered,
    'domainName': ?domainName,
  };
}