find<S> static method

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

Retrieves a dependency from the GetX service locator using the specified tag.

Implementation

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