remove abstract method

Future<void> remove(
  1. String key,
  2. QueryParams queryParams, {
  3. bool rebuildDb = false,
})

Remove data from storage.

Remove data by both the key and queryParams. And setting rebuildDb to true will clean up the SQL database and free up the space.

Implementation

Future<void> remove(
  String key,
  QueryParams queryParams, {
  bool rebuildDb = false,
});