SealedBlocWidgetBuilder5<S extends Union5<A, B, C, D, E>, A, B, C, D, E> typedef

SealedBlocWidgetBuilder5<S extends Union5<A, B, C, D, E>, A, B, C, D, E> = Widget Function(BuildContext context, WidgetSealedJoin5<A, B, C, D, E> )

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 SealedBlocWidgetBuilder5<S extends Union5<A, B, C, D, E>, A, B, C, D, E>
    = Widget Function(
  BuildContext context,
  WidgetSealedJoin5<A, B, C, D, E>,
);