incursCosts property

bool get incursCosts

Whether traveling this route may incur monetary costs (for example tolls).

Returns

  • bool: true when the route or segment includes paid sections, otherwise false.

Implementation

bool get incursCosts {
  final OperationResult resultString = objectMethod(
    pointerId,
    'RouteBase',
    'getIncursCosts',
  );

  return resultString['result'];
}