getErrorString method

Future<String> getErrorString(
  1. int errorCode
)

Displays a readable text result code returned by the isHMSAvailableWithApkVersion method.

Implementation

Future<String> getErrorString(int errorCode) async {
  return await _methodChannel.invokeMethod(
    'getErrorString',
    <String, dynamic>{
      'errCode': errorCode,
    },
  );
}