readDeletesPreferences property

Future<List<int>?> readDeletesPreferences

Implementation

Future<List<int>?> get readDeletesPreferences async {
  Uint8List? u = await _deletesCapBox.get('deletes');
  //_ubox.close();

  if (u == null) {
    return null;
  }
  dataPulledDisk += u.lengthInBytes;

  return ListFromUint64binary(u);
}