isHMSAvailable method

Future<int> isHMSAvailable()

Checks whether HMS Core (APK) is successfully installed and integrated on a device, and whether the version of the installed APK is that required by the client or is later than the required version.

Implementation

Future<int> isHMSAvailable() async {
  return await _methodChannel.invokeMethod(
    'isHmsAvailable',
  );
}