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('+', '-');
}