stop method

void stop()

Implementation

void stop() async {
  if (_ua != null) {
    _ua!.stop();
  } else {
    logger.w('ERROR: stop called but not started, call start first.');
  }
}