Line data Source code
1 : part of '../main.dart'; 2 : 3 : /// Use this mixin if you don't want to implement [VRouteElement.onPop] and [VRouteElement.onSystemPop] 4 : /// 5 : /// This mixin will set them to doing nothing 6 : /// 7 : /// Note that you can still override these methods 8 : mixin VoidVPopHandler on VRouteElement { 9 : @override 10 23 : Future<void> onPop(VRedirector vRedirector) async {} 11 : 12 : @override 13 20 : Future<void> onSystemPop(VRedirector vRedirector) async {} 14 : }