Advertisement
Guest User

Untitled

a guest
Mar 19th, 2019
67
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.25 KB | None | 0 0
  1. import 'package:bloc/bloc.dart';
  2.  
  3. class SimpleBlocDelegate extends BlocDelegate {
  4. @override
  5. void onTransition(Transition transition) {
  6. print(transition);
  7. }
  8.  
  9. @override
  10. void onError(Object error, StackTrace stacktrace) {
  11. print(error);
  12. }
  13. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement