toHex method
Implementation
@override
String toHex({
bool withPrefix = true,
bool lowerCase = true,
String? prefix = "",
}) {
return BytesUtils.toHexString(
compressed,
prefix: prefix,
lowerCase: lowerCase,
);
}
@override
String toHex({
bool withPrefix = true,
bool lowerCase = true,
String? prefix = "",
}) {
return BytesUtils.toHexString(
compressed,
prefix: prefix,
lowerCase: lowerCase,
);
}