StagePerformanceStandaloneInsight.fromJson constructor

StagePerformanceStandaloneInsight.fromJson(
  1. Map json_
)

Implementation

StagePerformanceStandaloneInsight.fromJson(core.Map json_)
    : this(
        biEngineReasons: json_.containsKey('biEngineReasons')
            ? (json_['biEngineReasons'] as core.List)
                .map((value) => BiEngineReason.fromJson(
                    value as core.Map<core.String, core.dynamic>))
                .toList()
            : null,
        highCardinalityJoins: json_.containsKey('highCardinalityJoins')
            ? (json_['highCardinalityJoins'] as core.List)
                .map((value) => HighCardinalityJoin.fromJson(
                    value as core.Map<core.String, core.dynamic>))
                .toList()
            : null,
        insufficientShuffleQuota:
            json_.containsKey('insufficientShuffleQuota')
                ? json_['insufficientShuffleQuota'] as core.bool
                : null,
        slotContention: json_.containsKey('slotContention')
            ? json_['slotContention'] as core.bool
            : null,
        stageId: json_.containsKey('stageId')
            ? json_['stageId'] as core.String
            : null,
      );