AccessSparkApplicationStageAttemptResponse.fromJson constructor
AccessSparkApplicationStageAttemptResponse.fromJson(
- Map json_
Implementation
AccessSparkApplicationStageAttemptResponse.fromJson(core.Map json_)
: this(
stageData:
json_.containsKey('stageData')
? StageData.fromJson(
json_['stageData'] as core.Map<core.String, core.dynamic>,
)
: null,
);