find<S> method

S find<S>({
  1. String? tag,
})

Finds and retrieves a dependency of type S. tag is an optional identifier to retrieve a tagged instance.

Implementation

S find<S>({String? tag}) => Get.find<S>(tag: tag);