$watchMany function
WatchBLoCWidget
$watchMany(
- Map<
Symbol, LiveData> liveDataMap, { - required Widget build(
- BuildContext context,
- Memorize memorize
- LifeCycleOwner? owner,
Implementation
WatchBLoCWidget $watchMany(
Map<Symbol, LiveData> liveDataMap, {
required Widget Function(BuildContext context, Memorize memorize) build,
LifeCycleOwner? owner,
}) {
if (owner != null) {
return $watch(makeMemorize(liveDataMap).owner(owner), build: build);
} else {
return $watch(makeMemorize(liveDataMap), build: build);
}
}