List<T> getTicketsInRange(DateTime pastMotnhStart, DateTime thisMonthEnd) => where((t) => t.date.isAfter(pastMotnhStart)) .where((t) => t.date.isBefore(thisMonthEnd)) .toList();