toHex method

String toHex()

Uppercase hexadecimal representation (e.g. 255.toHex() -> FF).

Implementation

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