categories property
Returns all categories defined in this landmark store.
Returns
- List<LandmarkCategory>: The store's categories.
Implementation
List<LandmarkCategory> get categories {
final OperationResult resultString = objectMethod(
pointerId,
'LandmarkStore',
'getCategories',
);
return LandmarkCategoryList.init(resultString['result']).toList();
}