convertFromTo method

String? convertFromTo(
  1. NUMERAL_SYSTEMS from,
  2. NUMERAL_SYSTEMS to
)

Implementation

String? convertFromTo(NUMERAL_SYSTEMS from, NUMERAL_SYSTEMS to) {
  final Property property = NumeralSystems()..convert(from, this);
  return property.getUnit(to).stringValue;
}