StreamsSelector0<T> constructor

StreamsSelector0<T>({
  1. Key? key,
  2. required Stream<T> selector(
    1. BuildContext
    ),
  3. required ValueWidgetBuilder<T> builder,
  4. Widget? child,
})

Both builder and selector must not be null.

Implementation

StreamsSelector0({
  Key? key,
  required this.selector,
  required this.builder,
  Widget? child,
}) : super(key: key, child: child);