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