isEVRoute property

bool get isEVRoute

Whether this route is designated for Electric Vehicles (EV).

Returns true when the route contains EV-specific data or has been computed as an EV route.

Returns

  • true if the route is an EV route, otherwise false.

Implementation

bool get isEVRoute {
  final OperationResult resultString = objectMethod(
    super.pointerId,
    'Route',
    'isEVRoute',
  );

  return resultString['result'];
}