DateTimePropertyDefinition.withUriAndFlagsANdNullable constructor

DateTimePropertyDefinition.withUriAndFlagsANdNullable(
  1. String xmlElementName,
  2. String uri,
  3. List<PropertyDefinitionFlags> flags,
  4. ExchangeVersion version,
  5. bool isNullable,
)
Initializes a new instance of the Name of the XML element. The URI. The flags. The version. Indicates that this property definition is for a nullable property.

Implementation

DateTimePropertyDefinition.withUriAndFlagsANdNullable(
    String xmlElementName,
    String uri,
    List<PropertyDefinitionFlags> flags,
    ExchangeVersion version,
    bool isNullable)
    : super.withUriAndFlags(xmlElementName, uri, flags, version) {
  this._isNullable = isNullable;
}