MatchBLoCWidget<T> constructor

MatchBLoCWidget<T>({
  1. Key? key,
  2. required LiveData<T> liveData,
  3. required bool when(
    1. T value
    ),
  4. required Widget builder(
    1. BuildContext context,
    2. T value
    ),
  5. BaseBLoCWidget? prev,
  6. BaseBLoCWidget? next,
})

Implementation

MatchBLoCWidget({
  Key? key,
  required this.liveData,
  required this.when,
  required this.builder,
  this.prev,
  this.next,
}) : super(key: key);