items property

List<SignpostItem> get items

Structured signpost elements used to assemble the sign layout.

Each entry in the returned list is a SignpostItem describing the semantic content and display hints for a portion of the signpost (text, pictogram, shield, etc.).

Returns

  • List<SignpostItem>: the ordered list of signpost elements.

Implementation

List<SignpostItem> get items {
  final OperationResult resultString = objectMethod(
    pointerId,
    'SignpostDetails',
    'getItems',
  );

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