AccessSessionSparkApplicationStageAttemptResponse.fromJson constructor

AccessSessionSparkApplicationStageAttemptResponse.fromJson(
  1. Map json_
)

Implementation

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