MatchBLoCWidget<T> constructor
MatchBLoCWidget<T> ({
- Key? key,
- required LiveData<
T> liveData, - required bool when(
- T value
- required Widget builder(
- BuildContext context,
- T value
- BaseBLoCWidget? prev,
- BaseBLoCWidget? next,
Implementation
MatchBLoCWidget({
Key? key,
required this.liveData,
required this.when,
required this.builder,
this.prev,
this.next,
}) : super(key: key);