categories property
Get landmark categories list.
Returns
- List<LandmarkCategory>
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();
}