builder method
Widget
builder({
- Key? key,
- required Widget builder(
- BuildContext context,
- T store,
- Widget? child
- Widget? child,
Returns an OrbitBuilder listening to this store.
Implementation
Widget builder({
Key? key,
required Widget Function(BuildContext context, T store, Widget? child)
builder,
Widget? child,
}) {
return OrbitBuilder<T>(
key: key,
store: _create,
builder: builder,
child: child,
);
}