stop method

Future<bool> stop({
  1. Duration? timeout,
})

Stops this container.

Implementation

Future<bool> stop({Duration? timeout}) =>
    dockerHost.stopByInstanceID(instanceID, timeout: timeout);