Name property

String? Name
Gets or sets the name of the attachment.

Implementation

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

Implementation

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