toHex method
Uppercase hexadecimal representation (e.g. 255.toHex() -> FF).
Implementation
String toHex() => toRadixString(16).toUpperCase();
Uppercase hexadecimal representation (e.g. 255.toHex() -> FF).
String toHex() => toRadixString(16).toUpperCase();