readable property
String?
get
readable
Implementation
String? get readable {
switch(this) {
case RadarrHealthCheckType.NOTICE: return 'Notice';
case RadarrHealthCheckType.WARNING: return 'Warning';
case RadarrHealthCheckType.ERROR: return 'Error';
default: return null;
}
}