LoadSnapshotRequest.fromJson constructor
LoadSnapshotRequest.fromJson(
- Map json_
Implementation
LoadSnapshotRequest.fromJson(core.Map json_)
: this(
skipAirflowOverridesSetting:
json_.containsKey('skipAirflowOverridesSetting')
? json_['skipAirflowOverridesSetting'] as core.bool
: null,
skipEnvironmentVariablesSetting:
json_.containsKey('skipEnvironmentVariablesSetting')
? json_['skipEnvironmentVariablesSetting'] as core.bool
: null,
skipGcsDataCopying: json_.containsKey('skipGcsDataCopying')
? json_['skipGcsDataCopying'] as core.bool
: null,
skipPypiPackagesInstallation:
json_.containsKey('skipPypiPackagesInstallation')
? json_['skipPypiPackagesInstallation'] as core.bool
: null,
snapshotPath: json_.containsKey('snapshotPath')
? json_['snapshotPath'] as core.String
: null,
);