isAttachmentTypesEnabled property

bool isAttachmentTypesEnabled

Implementation

bool get isAttachmentTypesEnabled =>
    _getAttribute<bool>(kAttachmentTypesEnabled, false);
void isAttachmentTypesEnabled=(bool? x)

pass null to remove key from attributes

Implementation

set isAttachmentTypesEnabled(bool? x) => (x == null)
    ? _attributes.remove(kAttachmentTypesEnabled)
    : _attributes[kAttachmentTypesEnabled] = x;