Created
June 13, 2021 08:26
-
-
Save varundwarkani/3032ca27487b9f7d76c5bbc99cfd3b04 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public class QuizOverViewModel extends ViewModel { | |
public SingleLiveEvent<Boolean> isCancelled = new SingleLiveEvent<>(); | |
public void closeDialog() { | |
isCancelled.postValue(true); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment