isEVRoute property
Check if route is an Electric Vehicle Route
Returns
- True if the route is an EV route, false otherwise
Implementation
bool get isEVRoute {
final OperationResult resultString = objectMethod(
pointerId,
'Route',
'isEVRoute',
);
return resultString['result'];
}