isAccessSongAttachments property

bool isAccessSongAttachments

Implementation

bool get isAccessSongAttachments =>
    _getAttribute<bool>(kAccessSongAttachments, false);
void isAccessSongAttachments=(bool? x)

pass null to remove key from attributes

Implementation

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