layouHasGoogle function

  1. @riverpod
bool layouHasGoogle(
  1. Ref<Object?> ref
)

Whether Google is linked

Implementation

@riverpod
bool layouHasGoogle(Ref ref) {
  final providers = ref.watch(layouLinkedProvidersProvider);
  return providers.contains('google.com');
}