signpostInstruction property

String get signpostInstruction

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:

Implementation

String get signpostInstruction {
  final OperationResult resultString = objectMethod(
    pointerId,
    'NavigationInstruction',
    'getSignpostInstruction',
  );

  return resultString['result'];
}