downloadExternalReadTokenAsBytes property

List<int> get downloadExternalReadTokenAsBytes

Implementation

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

Implementation

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