name property

String get name

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

Implementation

String get name {
  final OperationResult resultString = objectMethod(
    pointerId,
    'LandmarkCategory',
    'getName',
  );

  return resultString['result'];
}
set name (String name)

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);
}