categories property

List<LandmarkCategory> get categories

Get landmark categories list.

Returns

Throws

  • An exception if it fails.

Implementation

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

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