toRomanNumeral method
Converts this number to a Roman numeral string.
Truncates to integer first. Throws ArgumentError if the value is
outside the range 1-3999.
Implementation
String toRomanNumeral() => intToRomanNumeral(toInt());
Converts this number to a Roman numeral string.
Truncates to integer first. Throws ArgumentError if the value is
outside the range 1-3999.
String toRomanNumeral() => intToRomanNumeral(toInt());