watch<T> static method

T? watch<T>(
  1. WidgetRef ref
)

Implementation

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