builder property
StateBuilder(
models:[myModel],
builder:(BuildContext context, ReactiveModel model) =>MyWidget(),
)
The build strategy currently used to rebuild the state.
The builder is provided with a BuildContext and ReactiveModel parameters.
Implementation
final Widget Function(BuildContext context, ReactiveModel<T>? model)? builder;