ofMsg<Msg> static method

Cmd<Msg> ofMsg<Msg>(
  1. Msg msg
)

Chain a new message after processing the previous message.

Implementation

static Cmd<Msg> ofMsg<Msg>(Msg msg) =>
    Cmd([(Dispatch<Msg> dispatch) => dispatch(msg)]);