encryptedClientSecretAsBytes property

List<int> get encryptedClientSecretAsBytes

Implementation

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

Implementation

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