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 _channel
      .invokeMethod("getErrorString", {'errCode': errorCode});
}