to method

BigIntRange to(
  1. BigInt end, {
  2. BigInt? step,
})

Shorthand to create a range of BigInt numbers, starting with the receiver (inclusive) up to but not including end (exclusive).

Implementation

BigIntRange to(BigInt end, {BigInt? step}) => BigIntRange(this, end, step);