title property

String title

Implementation

String get title => _getAttribute<String>(kTitle, '');
void title=(String? x)

The name of the song.

When setting this value on a create you can pass a CCLI number and Services will fetch the song metadata for you.

pass null to remove key from attributes

Implementation

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