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