getProviderSentence static method

String getProviderSentence(
  1. MapProviderId id
)

Get the copyright statement for the specified provider.

Parameters

Returns

  • Get the provider's copyright statement.

Implementation

static String getProviderSentence(final MapProviderId id) {
  final OperationResult resultString = staticMethod(
    'MapDetails',
    'getProviderSentence',
    args: id.id,
  );

  return resultString['result'];
}