operator / method Null safety

double operator /(
  1. BigInt other
)

Double division operator.

Matching the similar operator on int, this operation first performs toDouble on both this big integer and other, then does double.operator/ on those values and returns the result. The initial toDouble conversion may lose precision.

Implementation

double operator /(BigInt other);