GetWidgetBuilder<S> typedef
GetWidgetBuilder<S> =
Widget Function(BuildContext context, S state)
Builder widget that rebuilds on state changes
Can work with RxCubit, RxBloc, or any Rx<T>
This method provides functionality for working with reactive programming patterns.
parameterName is the reactive stream to work with.
Returns a processed result.
Implementation
typedef GetWidgetBuilder<S> = Widget Function(
BuildContext context,
S state,
);