hasNextNextTurnInfo property

bool get hasNextNextTurnInfo

Check if next next turn information is available.

Returns

  • True if next next turn information is available, false otherwise.

Throws

  • An exception if it fails.

Implementation

bool get hasNextNextTurnInfo {
  final OperationResult resultString = objectMethod(
    _pointerId,
    'NavigationInstruction',
    'hasNextNextTurnInfo',
  );

  return resultString['result'];
}