signpostInstruction property

String get signpostInstruction

Get the textual description for the signpost information.

Returns

  • The textual description for the signpost information.

Throws

  • An exception if it fails.

Implementation

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

  return resultString['result'];
}