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