$ExecAction.fromJson constructor

$ExecAction.fromJson(
  1. Map json_
)

Implementation

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