show method

Future<void> show()

Shows the indicator and runs the callback as if it had been started interactively. If this method is called while the callback is running, it quietly does nothing.

Implementation

Future<void> show() {
  if (_mode == null) {
    _start();
    _show();
  }
  return _pendingAppendFuture ?? Future.value();
}