removeIfExist<S> static method
Remove when it exist in GetX container
Implementation
static void removeIfExist<S>({String? tag}) {
if (existInGetX<S>(tag: tag)) {
remove<S>(tag: tag);
}
}
Remove when it exist in GetX container
static void removeIfExist<S>({String? tag}) {
if (existInGetX<S>(tag: tag)) {
remove<S>(tag: tag);
}
}