observe property
StateWithMixinBuilder(
models:[myModel1, myModel2,myModel3],//If you want this widget to not rebuild, do not define any model.
MixinWith : MixinWith.singleTickerProviderStateMixin
builder:(BuildContext context, ReactiveModel model) =>MyWidget(),
)
List of your logic classes you want to rebuild this widget from.
The logic class should extend StatesWithMixinRebuilder
of the states_rebuilder package.
an observable to which you want StateWithMixinBuilder to subscribe.
Implementation
// final List<ReactiveModel> models;
///an observable to which you want [StateWithMixinBuilder] to subscribe.
final ReactiveModel<R> Function()? observe;