RxBlocMultiBuilder2<B extends RxBlocTypeBase, T1, T2> constructor

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

Default RxBlocBuilder constructor

Implementation

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