isGeneralEmailsEnabled property

bool isGeneralEmailsEnabled

Implementation

bool get isGeneralEmailsEnabled =>
    _getAttribute<bool>(kGeneralEmailsEnabled, false);
void isGeneralEmailsEnabled=(bool? x)

pass null to remove key from attributes

Implementation

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