close method

Future close()

Close USB connection

Implementation

Future close() async {
  try {
    return await _methodChannel!.invokeMethod("close");
  } on PlatformException catch (e) {
    throw _getTypedException(e);
  }
}