isExit property
bool
get
isExit
Whether this instruction represents a main-road exit maneuver.
Returns
bool:truewhen the instruction denotes an exit; otherwisefalse.
See also:
- exitDetails - get exit-specific information when the instruction is an exit.
Implementation
bool get isExit {
final OperationResult resultString = objectMethod(
pointerId,
'RouteInstructionBase',
'isExit',
);
return resultString['result'];
}