stop method

void stop()

Stops the spinner immediately without any status.

Implementation

void stop() {
  if (_spinner != null) {
    _spinner!.stop();
    _spinner = null;
  }
}