JobExecutionStageInfo.fromJson constructor
JobExecutionStageInfo.fromJson(
- 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,
);