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