value property

String? value

The actual value/key for the graph Y-axis value in Tautulli.

Implementation

String? get value {
    switch(this) {
        case TautulliGraphYAxis.PLAYS: return 'plays';
        case TautulliGraphYAxis.DURATION: return 'duration';
        case TautulliGraphYAxis.NULL: return '';
    }
}