Guest User

Untitled

a guest
Mar 20th, 2018
79
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.22 KB | None | 0 0
  1. abstract class EditorPageState extends NavigationPageState {
  2.  
  3. Function goBackTo(int level) {
  4. return () {
  5. Navigator.of(context).popUntil((route) {
  6. return route.currentResult == level;
  7. });
  8. };
  9. }
  10. }
Add Comment
Please, Sign In to add comment