getProviderName static method
Get the name of the specified provider.
Parameters
- IN id The provider ID as MapProviderId
Returns
- The name of the specified provider.
Throws
- An exception if it fails.
Implementation
static String getProviderName(final MapProviderId id) {
final OperationResult resultString = objectMethod(
0,
'MapDetails',
'getProviderName',
args: id.id,
);
return resultString['result'];
}