toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final dnsKeyContext = this.dnsKeyContext;
final id = this.id;
final kind = this.kind;
final startTime = this.startTime;
final status = this.status;
final type = this.type;
final user = this.user;
final zoneContext = this.zoneContext;
return {
'dnsKeyContext': ?dnsKeyContext,
'id': ?id,
'kind': ?kind,
'startTime': ?startTime,
'status': ?status,
'type': ?type,
'user': ?user,
'zoneContext': ?zoneContext,
};
}