mul method

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

Computes the multiplication: a * b.

Implementation

@override
BigInt mul(BigInt a, BigInt b) => a * b;