value property

String? value

The actual value/key for order directions used in Tautulli.

Implementation

String? get value {
    switch(this) {
        case TautulliOrderDirection.ASCENDING: return 'asc';
        case TautulliOrderDirection.DESCENDING: return 'desc';
        case TautulliOrderDirection.NULL: return '';
    }
}