landmarks property

LandmarkStoreCollection get landmarks

Gets access to the alarm settings for the landmark stores.

Returns

  • The landmark store collection

Throws

  • An exception if it fails.

Implementation

LandmarkStoreCollection get landmarks {
  final OperationResult result = objectMethod(
    _pointerId,
    'AlarmService',
    'lmks',
  );

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