JobExecutionStageInfo.fromJson constructor

JobExecutionStageInfo.fromJson(
  1. Map json_
)

Implementation

JobExecutionStageInfo.fromJson(core.Map json_)
    : this(
        stepName: json_.containsKey('stepName')
            ? (json_['stepName'] as core.List)
                .map((value) => value as core.String)
                .toList()
            : null,
      );