isCreativeEffect property

bool get isCreativeEffect

Whether this is a creative/fun effect

Implementation

bool get isCreativeEffect {
  switch (this) {
    case VoiceEffect.telephone:
    case VoiceEffect.echo:
    case VoiceEffect.hallReverb:
    case VoiceEffect.roomReverb:
    case VoiceEffect.whisper:
    case VoiceEffect.robotic:
    case VoiceEffect.chipmunk:
    case VoiceEffect.deepPitch:
      return true;
    default:
      return false;
  }
}