SealedBlocWidgetBuilder6<S extends Union6<A, B, C, D, E, F>, A, B, C, D, E, F> typedef

SealedBlocWidgetBuilder6<S extends Union6<A, B, C, D, E, F>, A, B, C, D, E, F> = Widget Function(BuildContext context, WidgetSealedJoin6<A, B, C, D, E, F> )

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 SealedBlocWidgetBuilder6<S extends Union6<A, B, C, D, E, F>, A, B, C, D,
        E, F>
    = Widget Function(
  BuildContext context,
  WidgetSealedJoin6<A, B, C, D, E, F>,
);