toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final backendService = this.backendService;
  final forwardingRule = this.forwardingRule;
  final healthCheck = this.healthCheck;
  final healthCheckService = this.healthCheckService;
  final healthState = this.healthState;
  final ipv6HealthState = this.ipv6HealthState;
  return {
    'backendService': ?backendService,
    'forwardingRule': ?forwardingRule,
    'healthCheck': ?healthCheck,
    'healthCheckService': ?healthCheckService,
    'healthState': ?healthState,
    'ipv6HealthState': ?ipv6HealthState,
  };
}