get<T> method

T? get<T>({
  1. String? tag,
})

Alias for find. Gets a dependency from the scope.

This is a convenience alias that provides consistent verb naming across the Zenify API (get/put/remove/has).

Implementation

T? get<T>({String? tag}) => find<T>(tag: tag);