isLyricsEnabled property

bool isLyricsEnabled

Implementation

bool get isLyricsEnabled => _getAttribute<bool>(kLyricsEnabled, false);
void isLyricsEnabled=(bool? x)

pass null to remove key from attributes

Implementation

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