notificationPreferences function
Implementation
@riverpod
Future<NotificationPreferences> notificationPreferences(Ref ref) async {
final ds = ref.watch(supabaseDatasourceProvider);
final json = await ds.getNotificationPreferences();
return NotificationPreferences.fromJson(json);
}