showAllFloating static method

dynamic showAllFloating()

Implementation

static showAllFloating() {
  for (var key in _openedFloatingKeys) {
    try {
      final targetFloating = _floatingCache[key]!;
      targetFloating.showFloating();
    } catch (e) {
      //TODO: handle exception
    }
  }
}