isAccessPlanAttachments property

bool isAccessPlanAttachments

Implementation

bool get isAccessPlanAttachments =>
    _getAttribute<bool>(kAccessPlanAttachments, false);
void isAccessPlanAttachments=(bool? x)

pass null to remove key from attributes

Implementation

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