ActionCondition.fromJson constructor
ActionCondition.fromJson(
- Map json_
Implementation
ActionCondition.fromJson(core.Map json_)
: this(
exitCodes: json_.containsKey('exitCodes')
? (json_['exitCodes'] as core.List)
.map((value) => value as core.int)
.toList()
: null,
);