ImAddress property

String? ImAddress
Gets or sets the Instant Messaging address of the entry.

Implementation

String? get ImAddress => this._imAddress;
void ImAddress=(String? value)

Implementation

set ImAddress(String? value) {
  if (this.CanSetFieldValue(this._imAddress, value)) {
    this._imAddress = value;
    this.Changed();
  }
}