watch<T> static method
T?
watch<T>(
- WidgetRef ref
Implementation
static T? watch<T>(WidgetRef ref) {
return ref.watch(
guardedConfigurationProvider.select((value) => value[T] as T?),
);
}