author property

String get author

Retrieves the author or creator of this landmark's information.

The field may be empty when the author is not specified by the data source.

Returns

  • String: The author name, or an empty string if not available.

Implementation

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

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

Sets the author/creator name for this landmark.

Parameters

  • auth: The author name string.

Implementation

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