toHexString method

String toHexString()

Converts this integer to a hexadecimal string.

Implementation

String toHexString() => toRadixString(16).toUpperCase();