delete method

Future<bool> delete({
  1. String? tag,
  2. bool force = false,
})

Removes this store from the active scope.

If force is true, removes even permanent registrations.

Returns true when a registration was removed.

Implementation

Future<bool> delete({String? tag, bool force = false}) =>
    deleteIn(Ls.currentScope, tag: tag, force: force);