signpostDetails property
Extended signpost details.
Returns structured signpost data including destination names, road numbers, exit information, and associated imagery. Available when hasSignpostInfo returns true.
Returns
- (
SignpostDetails?) Signpost details object, or null if unavailable.
See also:
- hasSignpostInfo - Check signpost availability.
- signpostInstruction - Signpost instruction text.
Implementation
SignpostDetails? get signpostDetails {
final OperationResult resultString = objectMethod(
pointerId,
'NavigationInstruction',
'getSignpostDetails',
);
if (resultString['result'] == -1) {
return null;
}
return SignpostDetails.init(resultString['result']);
}