PropertyDefinition.withUriAndFlags constructor

PropertyDefinition.withUriAndFlags(
  1. String xmlElementName,
  2. String uri,
  3. List<PropertyDefinitionFlags> flags,
  4. ExchangeVersion version,
)
Initializes a new instance of the Name of the XML element. The URI. The flags. The version.

Implementation

PropertyDefinition.withUriAndFlags(String xmlElementName, String uri,
    List<PropertyDefinitionFlags> flags, ExchangeVersion version)
    : super.withUri(uri) {
  this._xmlElementName = xmlElementName;
  this._flags = flags;
  this._version = version;
}