removeGlobalButton static method

void removeGlobalButton()

移除全局按钮

Returns void

Implementation

static void removeGlobalButton() {
  if (_currentGlobalButton != null) {
    _isAddedGlobalButton = false;
    _currentGlobalButton!.remove();
    _currentGlobalButton = null;
  }
}