isPTRoute property
Check if route is a Public Transport Route
Returns
- True if the route is a PT route, false otherwise
Implementation
bool get isPTRoute {
final OperationResult resultString = objectMethod(
pointerId,
'Route',
'isPTRoute',
);
return resultString['result'];
}