extraInfo property

ExtraInfo get extraInfo

Get direct access to the extra info attached to this landmark.

Returns

Throws

  • An exception if it fails.

Implementation

ExtraInfo get extraInfo {
  final OperationResult resultString = objectMethod(
    _pointerId,
    'Landmark',
    'getExtraInfo',
  );

  return ExtraInfo.fromList(resultString['result']);
}
set extraInfo (ExtraInfo list)

Set extra info.

Parameters

Throws

  • An exception if it fails.

Implementation

set extraInfo(final ExtraInfo list) {
  objectMethod(
    _pointerId,
    'Landmark',
    'setExtraInfo',
    args: list.toInputFormat(),
  );
}