get<T> static method
Alias for find. Gets a dependency from the container.
This is a convenience alias that provides consistent verb naming across the Zenify API (get/put/remove/has).
Example:
final service = Zen.get<UserService>();
Implementation
static T get<T>({String? tag}) => find<T>(tag: tag);