toMappedSubtype method
Converts this FloatingPointValue to a FloatingPointValue with the same sign, exponent, and mantissa using the constructor provided in subtypeConstructorMap if available, otherwise using the default constructor.
Implementation
FloatingPointValue toMappedSubtype() => FloatingPointValue.withMappedSubtype(
sign: sign, exponent: exponent, mantissa: mantissa);