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