landmarks property

LandmarkStoreCollection get landmarks

Get access to the search target landmark stores collection

Returns

  • The landmark stores collection

Throws

  • An exception if it fails

Implementation

LandmarkStoreCollection get landmarks {
  final OperationResult resultString = objectMethod(
    _pointerId,
    'SearchPreferences',
    'landmarks',
  );

  return LandmarkStoreCollection.init(resultString['result'], 0);
}