isOTRoute property

bool get isOTRoute

Check if route is an Over Track Route

Returns

  • True if the route is an OT route, false otherwise

Throws

  • An exception if it fails

Implementation

bool get isOTRoute {
  final OperationResult resultString = objectMethod(
    _pointerId,
    'Route',
    'isOTRoute',
  );

  return resultString['result'];
}