multiply property

BigInt multiply

Implementation

BigInt get multiply {
  if (isEmpty) return BigInt.zero;
  return reduce((previousValue, element) => previousValue * element as T);
}