hasSignpostInfo property
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:
- signpostDetails - Extended signpost details.
- signpostInstruction - Signpost instruction text.
Implementation
bool get hasSignpostInfo {
final OperationResult resultString = objectMethod(
pointerId,
'NavigationInstruction',
'hasSignpostInfo',
);
return resultString['result'];
}