builder property

Widget Function(BuildContext context, Store<St> store, St state, Dispatch dispatch, Model model, Widget? child) builder
finalinherited

A function that builds a widget tree from child and the last result of selector.

builder will be called again whenever the its parent widget asks for an update, or if selector return a value that is different from the previous one using operator==.

Must not be null.

Implementation

final Widget Function(
  BuildContext context,
  Store<St> store,
  St state,
  Dispatch dispatch,
  Model model,
  Widget? child,
) builder;