turnInstruction property

String get turnInstruction

Get textual description for the turn.

Returns

  • The turn instruction

Throws

  • An exception if it fails.

Implementation

String get turnInstruction {
  final OperationResult resultString = objectMethod(
    _pointerId,
    'RouteInstructionBase',
    'getTurnInstruction',
  );

  return resultString['result'];
}