songId property

String songId

Implementation

String get songId => _getAttribute<String>(kSongId, '');
void songId=(String? x)

pass null to remove key from attributes

Implementation

set songId(String? x) =>
    (x == null) ? _attributes.remove(kSongId) : _attributes[kSongId] = x;