author property

String get author

Get the author of this landmark.

It may be empty.

Returns

  • The author

Throws

  • An exception if it fails.

Implementation

String get author {
  final OperationResult resultString = objectMethod(
    _pointerId,
    'Landmark',
    'getAuthor',
  );

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

Set the author of this landmark.

It may be empty.

Parameters

  • IN auth The author

Throws

  • An exception if it fails.

Implementation

set author(final String auth) {
  objectMethod(_pointerId, 'Landmark', 'setAuthor', args: auth);
}