isBetweenDaily method

bool isBetweenDaily(
  1. DateTime v1,
  2. DateTime v2
)

Implementation

bool isBetweenDaily(DateTime v1, DateTime v2) {
  return copyWith(hour: 1).isAfter(v1.copyWith(hour: 0)) && copyWith(hour: 0).isBefore(v2.copyWith(hour: 1));
}