hasSignpostInfo property

bool get hasSignpostInfo

Whether signpost information is available.

Checks if the current navigation instruction has associated signpost data (destination information typically displayed on highway signs).

Returns

  • (bool) True if signpost information is available, false otherwise.

See also:

Implementation

bool get hasSignpostInfo {
  final OperationResult resultString = objectMethod(
    pointerId,
    'NavigationInstruction',
    'hasSignpostInfo',
  );

  return resultString['result'];
}