ProviderType property

String? ProviderType
Gets or sets the type of the attachment provider.

Implementation

String? get ProviderType => this._providerType;
void ProviderType=(String? value)

Implementation

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