incursCosts property
bool
get
incursCosts
Whether traveling this route may incur monetary costs (for example tolls).
Returns
bool:truewhen the route or segment includes paid sections, otherwisefalse.
Implementation
bool get incursCosts {
final OperationResult resultString = objectMethod(
pointerId,
'RouteBase',
'getIncursCosts',
);
return resultString['result'];
}