division method

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

Computes a truncating division: a ~/ b.

Implementation

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