publicKeyAsBytes property

List<int> get publicKeyAsBytes

Implementation

core.List<core.int> get publicKeyAsBytes => convert.base64.decode(publicKey!);
set publicKeyAsBytes (List<int> bytes_)

Implementation

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