bool isInThisGap(DateTime timePoint, int gap) { final dif = timePoint .copyWith(second: 00) .difference(start.copyWith(second: 00)) .inMinutes; return dif >= 0 && dif <= gap; }