getProperties method

Future<NavigationProperties> getProperties()

Get information about the navigation service's properties, including its MapType.

For more information, see the navigation service docs.

Implementation

Future<NavigationProperties> getProperties() async {
  final request = GetPropertiesRequest(name: name);
  return await client.getProperties(request, options: callOptions);
}