reencryptedUserCredentialsHashAsBytes property

List<int> get reencryptedUserCredentialsHashAsBytes

Implementation

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

Implementation

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