description property

String get description

Get the description of this landmark.

It may be empty.

Returns

  • The description

Throws

  • An exception if it fails.

Implementation

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

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

Set the description of this landmark.

It may be empty.

Parameters

  • IN desc The description

Throws

  • An exception if it fails.

Implementation

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