seriesId property

String seriesId

Implementation

String get seriesId => _getAttribute<String>(kSeriesId, '');
void seriesId=(String? x)

pass null to remove key from attributes

Implementation

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