subscribeNotifierWidget method

Widget subscribeNotifierWidget(
  1. M model,
  2. ConsumerElementBuilder<M> builder
)

订阅消费组件 model 订阅模型 builder 组件构建器

Implementation

Widget subscribeNotifierWidget(M model, ConsumerElementBuilder<M> builder) {
  _model = model;
  return _StateWidget.subscribeNotifierWidget<M>(model, builder);
}