seriesTitle property

String seriesTitle

Implementation

String get seriesTitle => _getAttribute<String>(kSeriesTitle, '');
void seriesTitle=(String? x)

pass null to remove key from attributes

Implementation

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