setRTS method

Future<void> setRTS(
  1. bool rts
)

Sets or clears the RTS port to value rts.

Implementation

Future<void> setRTS(bool rts) async {
  _rts = rts;
  return await _channel.invokeMethod("setRTS", {"value": rts});
}