landmarkStores property
Get all landmark stores.
Returns
- List of LandmarkStore objects
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();
}