contactInfo property

ContactInfo get contactInfo

Get contact info attached to this landmark Phone numbers & descriptions, email addresses & descriptions, URLs & descriptions.

Returns

Throws

  • An exception if it fails.

Implementation

ContactInfo get contactInfo {
  final OperationResult resultString = objectMethod(
    _pointerId,
    'Landmark',
    'getContactInfo',
  );

  return ContactInfo.init(resultString['result'], _mapId);
}
set contactInfo (ContactInfo ci)

Set the contact info.

Phone numbers & descriptions, email addresses & descriptions, URLs & descriptions.

Parameters

Throws

  • An exception if it fails.

Implementation

set contactInfo(final ContactInfo ci) {
  objectMethod(_pointerId, 'Landmark', 'setContactInfo', args: ci.pointerId);
}