roomIsMutedProvider top-level property
final
Get the default RoomNotificationsStatus for this room type
Implementation
final roomIsMutedProvider =
FutureProvider.autoDispose.family<bool, String>((ref, roomId) async {
final status = await ref.watch(roomNotificationStatusProvider(roomId).future);
return status == 'muted';
});