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
trueif the route is an EV route, otherwisefalse.
Implementation
bool get isEVRoute {
final OperationResult resultString = objectMethod(
super.pointerId,
'Route',
'isEVRoute',
);
return resultString['result'];
}