removeByKey abstract method

Future<void> removeByKey(
  1. String key, {
  2. bool rebuildDb = false,
})

Remove data from storage by key.

Setting rebuildDb to true will clean up the SQL database and free up the space.

Implementation

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