nextTurnInstruction property

String get nextTurnInstruction

Get the textual description for the next turn.

Returns

  • The textual description for the next turn

Throws

  • An exception if it fails.

Implementation

String get nextTurnInstruction {
  final OperationResult resultString = objectMethod(
    _pointerId,
    'NavigationInstruction',
    'getNextTurnInstruction',
  );

  return resultString['result'];
}