hasSignpostInfo property
Check if signpost information is available.
Returns
- True if the instruction has signpost information, false otherwise.
Throws
- An exception if it fails.
Implementation
bool get hasSignpostInfo {
final OperationResult resultString = objectMethod(
_pointerId,
'NavigationInstruction',
'hasSignpostInfo',
);
return resultString['result'];
}