sub method

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

Computes the subtraction: a - b.

Implementation

@override
BigInt sub(BigInt a, BigInt b) => a - b;