map<Msg, inner> static method
Implementation
static Cmd<Msg> map<Msg, inner>(Cmd<inner> innerCmd, Msg Function(inner) f) =>
Cmd(innerCmd._commands
.map((Effect<inner> innerEffect) => (Dispatch<Msg> dispatch) =>
innerEffect((inner x) => dispatch(f(x))))
.toList());