downloadReadHandleAsBytes property

List<int> downloadReadHandleAsBytes

Implementation

core.List<core.int> get downloadReadHandleAsBytes =>
    convert.base64.decode(downloadReadHandle!);
void downloadReadHandleAsBytes=(List<int> _bytes)

Implementation

set downloadReadHandleAsBytes(core.List<core.int> _bytes) {
  downloadReadHandle =
      convert.base64.encode(_bytes).replaceAll('/', '_').replaceAll('+', '-');
}