$ExecAction.fromJson constructor
$ExecAction.fromJson(
- Map json_
Implementation
$ExecAction.fromJson(core.Map json_)
: this(
command: json_.containsKey('command')
? (json_['command'] as core.List)
.map((value) => value as core.String)
.toList()
: null,
);