toHex method

  1. @override
String toHex({
  1. bool withPrefix = true,
  2. bool lowerCase = true,
  3. String? prefix = "",
})
override

Implementation

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