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