base16 property
String
get
base16
Gets the Encrypted bytes as a Hexdecimal representation.
Implementation
String get base16 => _bytes.map((byte) => byte.toRadixString(16).padLeft(2, "0")).join();
Gets the Encrypted bytes as a Hexdecimal representation.
String get base16 => _bytes.map((byte) => byte.toRadixString(16).padLeft(2, "0")).join();