description property

String get description

Retrieves the description text for this landmark.

The description may be localized depending on SDK language settings and can be empty.

Returns

  • String: The description text, or an empty string when not available.

Implementation

String get description {
  final OperationResult resultString = objectMethod(
    pointerId,
    'Landmark',
    'getDescription',
  );

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

Sets the description for this landmark.

Parameters

  • desc: The description text (may be empty).

Implementation

set description(final String desc) {
  objectMethod(pointerId, 'Landmark', 'setDescription', args: desc);
}