toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final createTime = this.createTime;
  final customContainerEnvironment = this.customContainerEnvironment;
  final defaultContainerEnvironment = this.defaultContainerEnvironment;
  final displayName = this.displayName;
  final egressControlConfig = this.egressControlConfig;
  final ingressControlConfig = this.ingressControlConfig;
  final name = this.name;
  final state = this.state;
  final updateTime = this.updateTime;
  return {
    'createTime': ?createTime,
    'customContainerEnvironment': ?customContainerEnvironment,
    'defaultContainerEnvironment': ?defaultContainerEnvironment,
    'displayName': ?displayName,
    'egressControlConfig': ?egressControlConfig,
    'ingressControlConfig': ?ingressControlConfig,
    'name': ?name,
    'state': ?state,
    'updateTime': ?updateTime,
  };
}