SealedBlocWidgetBuilder3<S extends Union3<A, B, C>, A, B, C> typedef

SealedBlocWidgetBuilder3<S extends Union3<A, B, C>, A, B, C> = Widget Function(BuildContext context, WidgetSealedJoin3<A, B, 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 SealedBlocWidgetBuilder3<S extends Union3<A, B, C>, A, B, C> = Widget
    Function(
  BuildContext context,
  WidgetSealedJoin3<A, B, C>,
);