WidgetSealedJoin1<A> typedef

WidgetSealedJoin1<A> = Widget Function(Widget mapFirst(A))

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 WidgetSealedJoin1<A> = Widget Function(
  Widget Function(A) mapFirst,
);