start method
Starts a container.
Implementation
Future<void> start(String container, {Duration? timeout}) async {
await _send(
method: HttpMethod.post,
path: '/containers/${_encodePath(container)}/start',
expectedStatusCodes: const <int>{204, 304},
timeout: timeout,
);
}