displayName property

String get displayName

Display name for UI

Implementation

String get displayName {
  switch (this) {
    case VoiceEffect.none:
      return 'None';
    case VoiceEffect.noiseReduction:
      return 'Noise Reduction';
    case VoiceEffect.voiceEnhancement:
      return 'Voice Enhancement';
    case VoiceEffect.broadcast:
      return 'Broadcast';
    case VoiceEffect.warmth:
      return 'Warmth';
    case VoiceEffect.brightness:
      return 'Brightness';
    case VoiceEffect.deepVoice:
      return 'Deep Voice';
    case VoiceEffect.telephone:
      return 'Telephone';
    case VoiceEffect.echo:
      return 'Echo';
    case VoiceEffect.hallReverb:
      return 'Hall Reverb';
    case VoiceEffect.roomReverb:
      return 'Room Reverb';
    case VoiceEffect.whisper:
      return 'Whisper';
    case VoiceEffect.robotic:
      return 'Robotic';
    case VoiceEffect.chipmunk:
      return 'Chipmunk';
    case VoiceEffect.deepPitch:
      return 'Deep Pitch';
    case VoiceEffect.deBreath:
      return 'De-Breath';
    case VoiceEffect.dePlosive:
      return 'De-Plosive';
    case VoiceEffect.normalizer:
      return 'Normalizer';
    case VoiceEffect.compressor:
      return 'Compressor';
    case VoiceEffect.limiter:
      return 'Limiter';
  }
}