signpostInstruction property

String get signpostInstruction

Localized text description for signpost guidance.

Returns

  • String: text for the signpost instruction, or an empty string when not available.

Implementation

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

  return resultString['result'];
}