categories property

List<LandmarkCategory> get categories

Returns all categories defined in this landmark store.

Returns

Implementation

List<LandmarkCategory> get categories {
  final OperationResult resultString = objectMethod(
    pointerId,
    'LandmarkStore',
    'getCategories',
  );

  return LandmarkCategoryList.init(resultString['result']).toList();
}