isAppInstall method

Future<bool?> isAppInstall(
  1. String appId
)

Implementation

Future<bool?> isAppInstall(String appId) async{
  _getIsAppInstallCompleter=Completer();
  _channel.invokeMethod("isAppInstall",{"appId":appId});
  return await _getIsAppInstallCompleter?.future;
}