find<T> method

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

Finds the registered dependency of type T using Get DI container.

Implementation

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