num_extensions.dart 244 Bytes Raw Blame History Permalink 1 2 3 4 5 6 7 import '../regex/get_utils.dart'; extension GetNumUtils on num { bool isLowerThan(num b) => GetUtils.isLowerThan(this, b); bool isGreaterThan(num b) => GetUtils.isGreaterThan(this, b); bool isEqual(num b) => GetUtils.isEqual(this, b); }