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