remove<K> method

Future<K?> remove<K>(
  1. K key, {
  2. String? scope,
})

Implementation

Future<K?> remove<K>(K key, {String? scope}) {
  return AargulDatabaseManager.removeItem<K>(key, db: __db, scope: scope);
}