Name property

String? Name
Gets or sets the name associated with the e-mail address.

Implementation

String? get Name => this.name;
void Name=(String? value)

Implementation

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