IntRange.infinite constructor

const IntRange.infinite()

Helper method to declare an infinite range of integers. This is equivalent to IntRange() with no arguments, but is included for clarity.

Implementation

const IntRange.infinite()
    : min = null,
      max = null;