findManyBetween method
Implementation
Future<List<NotificationAuditData>> findManyBetween(
DateTime from, DateTime to) async {
return await (select(notificationAudit)
..where((item) => item.happenedAt.isBetweenValues(from, to)))
.get();
}