categories property
List<LandmarkCategory>
get
categories
Implementation
List<LandmarkCategory> get categories {
final OperationResult resultString = objectMethod(
pointerId,
'Landmark',
'getCategories',
);
return LandmarkCategoryList.init(resultString['result']).toList();
}