builder property

Widget Function(BuildContext context, T watch<T>(NanoRead<T> readable)) builder
final

A builder that builds the widget and provides the function watch, which can be used to read the values of NanoRead instances and subscribe to changes to those values.

Implementation

final Widget Function(
  BuildContext context,
  T Function<T>(NanoRead<T> readable) watch,
) builder;