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,
      );