getProviderName static method

String getProviderName(
  1. MapProviderId id
)

Get the name of the specified provider.

Parameters

Returns

  • The name of the specified provider.

Implementation

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

  return resultString['result'];
}