Interval constructor

Interval(
  1. double min,
  2. double max, [
  3. bool includesMin = true,
  4. bool includesMax = true,
])

Implementation

Interval(this.min, this.max, [this.includesMin = true, this.includesMax = true]);