sha256AsBytes property

List<int> sha256AsBytes

Implementation

core.List<core.int> get sha256AsBytes => convert.base64.decode(sha256!);
void sha256AsBytes=(List<int> bytes_)

Implementation

set sha256AsBytes(core.List<core.int> bytes_) {
  sha256 =
      convert.base64.encode(bytes_).replaceAll('/', '_').replaceAll('+', '-');
}