add method

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

Computes the addition: a + b.

Implementation

@override
BigInt add(BigInt a, BigInt b) => a + b;