value property

String? value

The actual value/key for the image hosting services in Tautulli.

Implementation

String? get value {
    switch(this) {
        case TautulliImageHostService.IMGUR: return 'imgur';
        case TautulliImageHostService.CLOUDINARY: return 'cloudinary';
        case TautulliImageHostService.NULL: return '';
    }
}