base16 property

String base16

Implementation

String get base16 =>
    _bytes.map((byte) => byte.toRadixString(16).padLeft(2, '0')).join();