show static method

void show({
  1. bool force = false,
})

Implementation

static void show({bool force = false}) {
  if (force || (showIsActivated && _canShow())) {
    _onShow();
  }
}