deleteIn method

Future<bool> deleteIn(
  1. LevitScope scope, {
  2. String? tag,
  3. bool force = false,
})

Deletes the store instance from scope.

Implementation

Future<bool> deleteIn(LevitScope scope, {String? tag, bool force = false}) {
  return _inner.deleteIn(scope, tag: tag, force: force);
}