callConnected method

Future<void> callConnected()

Implementation

Future<void> callConnected() async {
  print('🎈 callConnected');

  if (Platform.isAndroid) {
    return;
  }

  return await _channel.invokeMethod('callConnected');
}