bigstoreObjectRefAsBytes property

List<int> bigstoreObjectRefAsBytes

Implementation

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

Implementation

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