exitDetails property
String
get
exitDetails
Exit instruction text when this instruction is an exit.
Returns
String: exit text, or an empty string when the instruction is not an exit.
See also:
- RouteInstruction.isExit - check if the instruction is an exit.
Implementation
String get exitDetails {
final OperationResult resultString = objectMethod(
pointerId,
'RouteInstructionBase',
'getExitDetails',
);
return resultString['result'];
}