mod method

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

Computes the remainder of the Euclidean division a % b.

Implementation

@override
BigInt mod(BigInt a, BigInt b) => a % b;