extraInfo property
Get direct access to the extra info attached to this landmark.
Returns
- ExtraInfo object.
Throws
- An exception if it fails.
Implementation
ExtraInfo get extraInfo {
final OperationResult resultString = objectMethod(
_pointerId,
'Landmark',
'getExtraInfo',
);
return ExtraInfo.fromList(resultString['result']);
}
Set extra info.
Parameters
- IN list ExtraInfo object
Throws
- An exception if it fails.
Implementation
set extraInfo(final ExtraInfo list) {
objectMethod(
_pointerId,
'Landmark',
'setExtraInfo',
args: list.toInputFormat(),
);
}