ActionCondition.fromJson constructor

ActionCondition.fromJson(
  1. 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,
      );