toHex method

  1. @override
String toHex({
  1. bool lowerCase = false,
})
override

Returns the hexadecimal representation of the public key.

Implementation

@override
String toHex({bool lowerCase = false}) {
  return BytesUtils.toHexString(toBytes(), lowerCase: lowerCase);
}