toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final apiProxy = this.apiProxy;
  final deployStartTime = this.deployStartTime;
  final environment = this.environment;
  final errors = this.errors;
  final instances = this.instances;
  final pods = this.pods;
  final proxyDeploymentType = this.proxyDeploymentType;
  final revision = this.revision;
  final routeConflicts = this.routeConflicts;
  final serviceAccount = this.serviceAccount;
  final state = this.state;
  return {
    'apiProxy': ?apiProxy,
    'deployStartTime': ?deployStartTime,
    'environment': ?environment,
    'errors': ?errors,
    'instances': ?instances,
    'pods': ?pods,
    'proxyDeploymentType': ?proxyDeploymentType,
    'revision': ?revision,
    'routeConflicts': ?routeConflicts,
    'serviceAccount': ?serviceAccount,
    'state': ?state,
  };
}