toRomanNumeral method

String toRomanNumeral()

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());