batch<Msg> static method

Cmd<Msg> batch<Msg>(
  1. Iterable<Cmd<Msg>> cmds
)

Return multiple Cmds.

Implementation

static Cmd<Msg> batch<Msg>(Iterable<Cmd<Msg>> cmds) =>
    Cmd(cmds.expand((element) => element._commands).toList());