closeFloatingByKey static method
Implementation
static closeFloatingByKey(String key) {
final containsKeys = _floatingKeys.contains(key);
if (containsKeys) {
_floatingCache[key]!.close();
_floatingCache.remove(key);
_floatingKeys.remove(key);
}
}