convertDouble method

double convertDouble(
  1. double value
)

Converts the input value from the input unit to the output unit (that have been used to create this converter). NOTE: The conversion using floating-point operations is not as accurate as the conversion using ratios.

See the Rust documentation for convert for more information.

Implementation

double convertDouble(double value) {
  final result = _icu4x_UnitsConverter_convert_double_mv1(_ffi, value);
  return result;
}