WatchBLoCWidget<T> constructor

const WatchBLoCWidget<T>({
  1. Key? key,
  2. LiveData<T>? liveData,
  3. required Widget builder(
    1. BuildContext context,
    2. T value
    ),
})

Implementation

const WatchBLoCWidget({
  Key? key,
  this.liveData,
  required this.builder,
}) : super(key: key);