build method

Future<WidgetBuilder> build(
  1. Watcher watch,
  2. OtherType read<OtherType>(
    1. Reactive<OtherType> reactive
    )
)

Implementation

Future<WidgetBuilder> build(Watcher watch, OtherType Function<OtherType>(Reactive<OtherType> reactive) read) async {
  return (context) => const Placeholder();
}