toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final createTime = this.createTime;
  final disabled = this.disabled;
  final firewallEndpoint = this.firewallEndpoint;
  final labels = this.labels;
  final name = this.name;
  final network = this.network;
  final reconciling = this.reconciling;
  final state = this.state;
  final tlsInspectionPolicy = this.tlsInspectionPolicy;
  final updateTime = this.updateTime;
  return {
    'createTime': ?createTime,
    'disabled': ?disabled,
    'firewallEndpoint': ?firewallEndpoint,
    'labels': ?labels,
    'name': ?name,
    'network': ?network,
    'reconciling': ?reconciling,
    'state': ?state,
    'tlsInspectionPolicy': ?tlsInspectionPolicy,
    'updateTime': ?updateTime,
  };
}