WidgetSealedJoin3<A, B, C> typedef

WidgetSealedJoin3<A, B, C> = Widget Function(Widget mapFirst(A), Widget mapSecond(B), Widget mapThird(C))

builder will be called with a BuildContext and the union of all Bloc states and must return a Widget for each possible state.

Implementation

typedef WidgetSealedJoin3<A, B, C> = Widget Function(
  Widget Function(A) mapFirst,
  Widget Function(B) mapSecond,
  Widget Function(C) mapThird,
);