safeAdd static method

BigInt safeAdd(
  1. BigInt? a,
  2. BigInt? b
)

Implementation

static BigInt safeAdd(BigInt? a, BigInt? b) => (a ?? BigInt.zero) + (b ?? BigInt.zero);