readable property
String?
get
readable
Implementation
String? get readable {
switch(this) {
case RadarrProtocol.USENET: return 'Usenet';
case RadarrProtocol.TORRENT: return 'Torrent';
default: return null;
}
}