toHexString property

String get toHexString

Full hex string representation (64 characters)

Example: "2ab4c3d5e6f7a8b9c0d1e2f3a4b5c6d7e8f9a0b1c2d3e4f5a6b7c8d9e0f1a2b3"

Implementation

String get toHexString {
  return bytes.map((b) => b.toRadixString(16).padLeft(2, '0')).join();
}