name property

String get name

Get the category name.

Returns

  • The category name

Throws

  • An exception if it fails.

Implementation

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

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

Set the category name.

Parameters

  • IN name Category name

Throws

  • An exception if it fails.

Implementation

set name(final String name) {
  objectMethod(_pointerId, 'LandmarkCategory', 'setName', args: name);
}