open method

Future<bool> open ()

Opens the uart communication channel.

returns true if successful or false if failed.

Implementation

Future<bool> open() async {
  return await _channel.invokeMethod("open");
}