toDouble method
Converts this decimal to a double-precision floating-point value.
Implementation
double toDouble() => scaledValue.toDouble() / _pow10(scale).toDouble();
Converts this decimal to a double-precision floating-point value.
double toDouble() => scaledValue.toDouble() / _pow10(scale).toDouble();