accurateWaypointsApproach property
Get accurate waypoints approach. An accurate approach implies that the route arrives at the waypoint on the drive side of the region.
Default is false.
Implementation
bool get accurateWaypointsApproach {
final OperationResult resultString = objectMethod(
pointerId,
'RoutePrefWrapper',
'getAccurateWaypointsApproach',
);
return resultString['result'];
}
Set the accurate waypoints approach. An accurate approach implies that the route arrives at the waypoint on the drive side of the region
Parameters
value: True to enable accurate waypoints approach, false otherwise.
Implementation
@experimental
set accurateWaypointsApproach(final bool value) {
objectMethod(
pointerId,
'RoutePrefWrapper',
'accurateWaypointsApproach',
args: value,
);
}