toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final displayName = this.displayName;
  final healthCheckAllowingFirewallRules =
      this.healthCheckAllowingFirewallRules;
  final healthCheckBlockingFirewallRules =
      this.healthCheckBlockingFirewallRules;
  final healthCheckFirewallState = this.healthCheckFirewallState;
  final uri = this.uri;
  return {
    'displayName': ?displayName,
    'healthCheckAllowingFirewallRules': ?healthCheckAllowingFirewallRules,
    'healthCheckBlockingFirewallRules': ?healthCheckBlockingFirewallRules,
    'healthCheckFirewallState': ?healthCheckFirewallState,
    'uri': ?uri,
  };
}