landmarks property

LandmarkStoreCollection get landmarks

Get access to the search target landmark stores collection.

Returns

  • The landmark stores collection.

Implementation

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

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