isInstalled method

Future<bool> isInstalled()

检测微信是否已安装

Implementation

Future<bool> isInstalled() async {
  return await _channel.invokeMethod<bool>(_METHOD_ISINSTALLED) ?? false;
}