Line data Source code
1 : part of '../main.dart'; 2 : 3 : class VPopHandler with VRouteElement, VRouteElementWithoutPage { 4 : final List<VRouteElement> stackedRoutes; 5 : 6 2 : VPopHandler({ 7 : this.onPop = VRouteElement._voidOnPop, 8 : this.onSystemPop = VRouteElement._voidOnSystemPop, 9 : required this.stackedRoutes, 10 : }); 11 : 12 : final Future<void> Function(VRedirector vRedirector) onPop; 13 : 14 : final Future<void> Function(VRedirector vRedirector) onSystemPop; 15 : }