Created
July 13, 2020 10:33
-
-
Save shivanchalaeologic/caf120fd1189cdacaa8e7287f229699a 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
import 'package:cubit/cubit.dart'; | |
class MainCubitObserver extends CubitObserver { | |
@override | |
void onTransition(Cubit cubit, Transition transition) { | |
print("CubitObserver $transition"); | |
super.onTransition(cubit, transition); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment