RxBlocMultiBuilder3<B extends RxBlocTypeBase, T1, T2, T3> constructor

const RxBlocMultiBuilder3<B extends RxBlocTypeBase, T1, T2, T3>({
  1. required Stream<T1> state1(
    1. B
    ),
  2. required Stream<T2> state2(
    1. B
    ),
  3. required Stream<T3> state3(
    1. B
    ),
  4. required Widget builder(
    1. BuildContext,
    2. AsyncSnapshot<T1>,
    3. AsyncSnapshot<T2>,
    4. AsyncSnapshot<T3>,
    5. B,
    ),
  5. B? bloc,
  6. Key? key,
})

Default RxBlocBuilder constructor

Implementation

const RxBlocMultiBuilder3({
  required this.state1,
  required this.state2,
  required this.state3,
  required this.builder,
  this.bloc,
  super.key,
});