toHex64 method
Same as toHexUnsigned, but ensure a width of 8 bytes (16 HEX width).
Implementation
String toHex64() {
if (isNegative) {
return toHexUnsigned(width: 16);
} else {
return toHex(width: 16);
}
}
Same as toHexUnsigned, but ensure a width of 8 bytes (16 HEX width).
String toHex64() {
if (isNegative) {
return toHexUnsigned(width: 16);
} else {
return toHex(width: 16);
}
}