Skip to content

Commit

Permalink
Add ALERT SoundType enum value (flutter#20139)
Browse files Browse the repository at this point in the history
  • Loading branch information
tvolkert authored Jul 30, 2020
1 parent adb5986 commit 941c442
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -430,7 +430,8 @@ public interface PlatformMessageHandler {

/** Types of sounds the Android OS can play on behalf of an application. */
public enum SoundType {
CLICK("SystemSoundType.click");
CLICK("SystemSoundType.click"),
ALERT("SystemSoundType.alert");

@NonNull
static SoundType fromValue(@NonNull String encodedName) throws NoSuchFieldException {
Expand Down

0 comments on commit 941c442

Please sign in to comment.