toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final containerConcurrency = this.containerConcurrency;
final containers = this.containers;
final enableServiceLinks = this.enableServiceLinks;
final imagePullSecrets = this.imagePullSecrets;
final nodeSelector = this.nodeSelector;
final runtimeClassName = this.runtimeClassName;
final serviceAccountName = this.serviceAccountName;
final timeoutSeconds = this.timeoutSeconds;
final volumes = this.volumes;
return {
'containerConcurrency': ?containerConcurrency,
'containers': ?containers,
'enableServiceLinks': ?enableServiceLinks,
'imagePullSecrets': ?imagePullSecrets,
'nodeSelector': ?nodeSelector,
'runtimeClassName': ?runtimeClassName,
'serviceAccountName': ?serviceAccountName,
'timeoutSeconds': ?timeoutSeconds,
'volumes': ?volumes,
};
}