description property
String
get
description
Human-readable description of the quality level.
Implementation
String get description {
switch (this) {
case ScanQuality.fast:
return 'Fast scanning with lower accuracy';
case ScanQuality.balanced:
return 'Balanced scanning with moderate accuracy and speed';
case ScanQuality.high:
return 'High-quality scanning with maximum accuracy';
}
}