connect method

  1. @override
Future<bool> connect()
override

Implementation

@override
Future<bool> connect() async {
  try {
    bool status = await methodChannelCaller.invokeMethod("connect");
    return status;
  } on PlatformException catch (e) {
    debugPrint(e.toString());
    rethrow;
  }
}