signpostInstruction property
Textual signpost instruction.
Returns a human-readable description of the signpost information, combining destination names, exit numbers, and road designations into a single formatted string.
Returns
- (
String) Textual signpost instruction.
See also:
- signpostDetails - Structured signpost data.
- hasSignpostInfo - Check signpost availability.
Implementation
String get signpostInstruction {
final OperationResult resultString = objectMethod(
pointerId,
'NavigationInstruction',
'getSignpostInstruction',
);
return resultString['result'];
}