Range constructor

Range({
  1. int? from,
  2. int? step,
  3. int? to,
})

Implementation

Range({
  this.from,
  this.step,
  this.to,
});