remove<T> method
Alias for delete. Removes a dependency from the scope.
This is a convenience alias that provides consistent verb naming across the Zenify API (get/put/remove/has).
Implementation
bool remove<T>({String? tag, bool force = false}) =>
delete<T>(tag: tag, force: force);