toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final kind = this.kind;
  final name = this.name;
  final routingPolicy = this.routingPolicy;
  final rrdatas = this.rrdatas;
  final signatureRrdatas = this.signatureRrdatas;
  final ttl = this.ttl;
  final type = this.type;
  return {
    'kind': ?kind,
    'name': ?name,
    'routingPolicy': ?routingPolicy,
    'rrdatas': ?rrdatas,
    'signatureRrdatas': ?signatureRrdatas,
    'ttl': ?ttl,
    'type': ?type,
  };
}