contactInfo property
Get contact info attached to this landmark Phone numbers & descriptions, email addresses & descriptions, URLs & descriptions.
Returns
- ContactInfo object
Throws
- An exception if it fails.
Implementation
ContactInfo get contactInfo {
final OperationResult resultString = objectMethod(
_pointerId,
'Landmark',
'getContactInfo',
);
return ContactInfo.init(resultString['result'], _mapId);
}
Set the contact info.
Phone numbers & descriptions, email addresses & descriptions, URLs & descriptions.
Parameters
- IN ci ContactInfo object
Throws
- An exception if it fails.
Implementation
set contactInfo(final ContactInfo ci) {
objectMethod(_pointerId, 'Landmark', 'setContactInfo', args: ci.pointerId);
}