put<S> static method

S put<S>(
  1. S dependency, {
  2. String? tag,
})

Put it into GetX container.

Implementation

static S put<S>(S dependency, {String? tag}) {
  return Get.put<S>(dependency, tag: tag);
}