signpostDetails property
Get the extended signpost details.
Returns
- The extended signpost details.
Throws
- An exception if it fails.
Implementation
SignpostDetails? get signpostDetails {
final OperationResult resultString = objectMethod(
_pointerId,
'NavigationInstruction',
'getSignpostDetails',
);
if (resultString['result'] == -1) {
return null;
}
return SignpostDetails.init(resultString['result']);
}