toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final geo = this.geo;
final healthCheck = this.healthCheck;
final kind = this.kind;
final primaryBackup = this.primaryBackup;
final wrr = this.wrr;
return {
'geo': ?geo,
'healthCheck': ?healthCheck,
'kind': ?kind,
'primaryBackup': ?primaryBackup,
'wrr': ?wrr,
};
}