Concat a list of subscriptions into a single one.
static Sub<Msg> batch<Msg>(List<Sub<Msg>> subs) => Sub(subs.expand((element) => element._subs).toList());