hideLabel method

void hideLabel(
  1. Route route
)

Hide route label.

Parameters

  • IN route The route for which the label should be hidden

Throws

  • An exception if it fails.

Implementation

void hideLabel(final Route route) {
  objectMethod(
    pointerId,
    'MapViewRouteCollection',
    'hideLabel',
    args: route.pointerId,
  );
}