f_card_swiper/lib/src/extensions.dart

6 lines
105 B
Dart

extension Range on num {
bool isBetween(num from, num to) {
return from < this && this < to;
}
}