batch<Msg> static method

Sub<Msg> batch<Msg>(
  1. List<Sub<Msg>> subs
)

Concat a list of subscriptions into a single one.

Implementation

static Sub<Msg> batch<Msg>(List<Sub<Msg>> subs) =>
    Sub(subs.expand((element) => element._subs).toList());