signpostDetails property

SignpostDetails get signpostDetails

Detailed signpost information associated with this instruction.

Returns

  • SignpostDetails: extended signpost data, or an object with empty fields when unavailable.

See also:

Implementation

SignpostDetails get signpostDetails {
  final OperationResult resultString = objectMethod(
    pointerId,
    'RouteInstructionBase',
    'getSignpostDetails',
  );

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