encryptedClientSecretAsBytes property

List<int> encryptedClientSecretAsBytes

Implementation

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

Implementation

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