stop method

Future<String?> stop()

Implementation

Future<String?> stop() async {
  final delegate = _delegate;

  if (delegate == null) {
    return null;
  }

  return delegate.stop();
}