disconnect method

Future<bool> disconnect()

Implementation

Future<bool> disconnect() async {
  bool isSuccess = await mConnMethodChannel.invokeMethod('disconnect');
  return isSuccess;
}