bigstoreObjectRefAsBytes property

List<int> get bigstoreObjectRefAsBytes

Implementation

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

Implementation

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