build abstract method

Widget build(
  1. BuildContext context,
  2. T watch<T>(
    1. NanoRead<T> nanoRead
    )
)

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

Widget build(
  BuildContext context,
  T Function<T>(NanoRead<T> nanoRead) watch,
);