find<S> method
Finds a Instance of the required Class <S>
(or tag
)
In the case of using Get.create()
, it will generate an Instance
each time you call Get.find()
.
Implementation
S find<S>({String? tag}) => GetInstance().find<S>(tag: tag);