find<S> method

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

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);