div method

  1. @override
BigInt div(
  1. BigInt a,
  2. BigInt b
)
override

Computes the division: a / b.

Implementation

@override
BigInt div(BigInt a, BigInt b) => a ~/ b;