stop method

Future<void> stop({
  1. required String containerId,
  2. bool force = true,
})

Implementation

Future<void> stop({required String containerId, bool force = true}) async {
  await room.sendRequest("containers.stop_container", {"id": containerId, "force": force});
}