isWechatInstalled static method

Future isWechatInstalled()

Implementation

static Future<dynamic> isWechatInstalled() async {
  final String result = await _channel.invokeMethod('isWechatInstalled');
  print('isWechatInstalled result: $result');
  return result;
}