landmarkStores property

List<LandmarkStore> get landmarkStores

Get all landmark stores.

Returns

Throws

  • An exception if it fails to initialize.

Implementation

static List<LandmarkStore> get landmarkStores {
  final OperationResult resultString = objectMethod(
    0,
    'LandmarkStoreService',
    'getLandmarkStores',
  );

  final List<dynamic> res = resultString['result'];
  return res.map((final dynamic e) => LandmarkStore.init(e, 0)).toList();
}