orgNotifications function
Implementation
@riverpod
Future<List<OrgNotification>> orgNotifications(Ref ref, String orgId) async {
final ds = ref.watch(orgDatasourceProvider);
final models = await ds.getNotifications(orgId);
return models.map((m) => m.toEntity()).toList();
}