iconName property
String
get
iconName
Icon name for UI
Implementation
String get iconName {
switch (this) {
case VoiceEffect.none:
return 'block';
case VoiceEffect.noiseReduction:
return 'noise_control_off';
case VoiceEffect.voiceEnhancement:
return 'mic';
case VoiceEffect.broadcast:
return 'radio';
case VoiceEffect.warmth:
return 'whatshot';
case VoiceEffect.brightness:
return 'wb_sunny';
case VoiceEffect.deepVoice:
return 'arrow_downward';
case VoiceEffect.telephone:
return 'phone';
case VoiceEffect.echo:
return 'surround_sound';
case VoiceEffect.hallReverb:
return 'stadium';
case VoiceEffect.roomReverb:
return 'meeting_room';
case VoiceEffect.whisper:
return 'volume_down';
case VoiceEffect.robotic:
return 'smart_toy';
case VoiceEffect.chipmunk:
return 'arrow_upward';
case VoiceEffect.deepPitch:
return 'arrow_downward';
case VoiceEffect.deBreath:
return 'air';
case VoiceEffect.dePlosive:
return 'volume_off';
case VoiceEffect.normalizer:
return 'tune';
case VoiceEffect.compressor:
return 'compress';
case VoiceEffect.limiter:
return 'show_chart';
}
}