compatibilityEmoji property
String
get
compatibilityEmoji
Implementation
String get compatibilityEmoji {
if (!isCompatible) return '❌';
switch (expectedSpeed) {
case 'fast':
return '⚡';
case 'medium':
return '✓';
case 'slow':
return '🐢';
default:
return '?';
}
}