signpostDetails property

SignpostDetails get signpostDetails

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',
  );

  return SignpostDetails.init(resultString['result'], _mapId);
}