builder property

Widget Function(BuildContext context, Widget? child, T notifier) builder
final

🏗️ The Builder calls this when it needs to build the widget tree. You can access the notifier and its state here

Implementation

final Widget Function(
  BuildContext context,
  Widget? child,
  T notifier,
) builder;