Range constructor

const Range({
  1. int? from,
  2. int? value,
})

Returns a new Range instance.

Implementation

const Range({
  this.from,
  this.value,
});