rowKeyPrefixAsBytes property

List<int> rowKeyPrefixAsBytes

Implementation

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

Implementation

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