getValue method
Get the conversion value.
Implementation
@override
UcumDecimal getValue() {
try {
return UcumDecimal.fromInt(5).divide(UcumDecimal.fromInt(9));
} catch (e) {
// won't happen, but in case of error, return null
rethrow;
}
}