name property
Returns the localized display name for this category.
The name is typically localized according to the SDK language settings for built-in categories. For custom categories the name is the value assigned by the creator.
Returns
- String: The category name.
Implementation
String get name {
final OperationResult resultString = objectMethod(
pointerId,
'LandmarkCategory',
'getName',
);
return resultString['result'];
}
Sets the display name for this category.
Parameters
name: The localized or user-defined name to assign to the category.
Implementation
set name(final String name) {
objectMethod(pointerId, 'LandmarkCategory', 'setName', args: name);
}