value property

String? value

The actual value/key for the fallback image in Tautulli.

Implementation

String? get value {
    switch(this) {
        case TautulliFallbackImage.POSTER: return 'poster';
        case TautulliFallbackImage.COVER: return 'cover';
        case TautulliFallbackImage.ART: return 'art';
        case TautulliFallbackImage.POSTER_LIVE: return 'poster-live';
        case TautulliFallbackImage.ART_LIVE: return 'art-live';
        case TautulliFallbackImage.ART_LIVE_FULL: return 'art-live-full';
        case TautulliFallbackImage.NULL: return '';
    }
}