JokeIdRange constructor

JokeIdRange(
  1. int from, [
  2. int? to
])

Implementation

JokeIdRange(this.from, [this.to]) : assert(to == null || from > to);