stopContainer method

FutureOr<bool> stopContainer()

Stops the container. Called by stopImpl.

Implementation

FutureOr<bool> stopContainer() {
  var container = this.container;
  if (container == null) return false;
  return container.stop(timeout: stopContainerTimeout);
}