Range constructor

Range(
  1. num? from,
  2. num? to
)

The Range class defines a range of values(e.g 3..10 in vanilla)

Implementation

Range(this.from, this.to);