value property

String? value

The actual value/key for the statistic type value in Tautulli.

Implementation

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