StagePerformanceChangeInsight.fromJson constructor

StagePerformanceChangeInsight.fromJson(
  1. Map json_
)

Implementation

StagePerformanceChangeInsight.fromJson(core.Map json_)
    : this(
        inputDataChange: json_.containsKey('inputDataChange')
            ? InputDataChange.fromJson(json_['inputDataChange']
                as core.Map<core.String, core.dynamic>)
            : null,
        stageId: json_.containsKey('stageId')
            ? json_['stageId'] as core.String
            : null,
      );