toHexStringAsBytes method
Converts an integer to a hex string with specified length and endianness.
Implementation
String toHexStringAsBytes(
int length, {
Endianness endianness = Endianness.Big,
}) =>
ByteUtils.intToHexString(this, length, endianness: endianness);