RxLoadingBuilder<B extends RxBlocTypeBase> constructor

const RxLoadingBuilder<B extends RxBlocTypeBase>({
  1. required Stream<LoadingWithTag> state(
    1. B
    ),
  2. required Widget builder(
    1. BuildContext,
    2. bool isLoading,
    3. String tag,
    4. B,
    ),
  3. B? bloc,
  4. Key? key,
})

The default constructor

Implementation

const RxLoadingBuilder({
  required this.state,
  required this.builder,
  this.bloc,
  Key? key,
}) : super(key: key);