getServicesVersionCode method

Future<int?> getServicesVersionCode()

Obtains the minimum version number of HMS Core that is supported currently.

Implementation

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