toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final airflowConfigOverrides = this.airflowConfigOverrides;
  final cloudDataLineageIntegration = this.cloudDataLineageIntegration;
  final envVariables = this.envVariables;
  final imageVersion = this.imageVersion;
  final pypiPackages = this.pypiPackages;
  final pythonVersion = this.pythonVersion;
  final schedulerCount = this.schedulerCount;
  final webServerPluginsMode = this.webServerPluginsMode;
  return {
    'airflowConfigOverrides': ?airflowConfigOverrides,
    'cloudDataLineageIntegration': ?cloudDataLineageIntegration,
    'envVariables': ?envVariables,
    'imageVersion': ?imageVersion,
    'pypiPackages': ?pypiPackages,
    'pythonVersion': ?pythonVersion,
    'schedulerCount': ?schedulerCount,
    'webServerPluginsMode': ?webServerPluginsMode,
  };
}