stopDown method

Future<bool> stopDown({
  1. int timeout = 5,
})

Implementation

Future<bool> stopDown({int timeout = 5}) async {
  bool ret = await _command
      .writeCgi("decoder_control.cgi?command=3&onestep=0&", timeout: timeout);
  return ret;
}