auth_service.dart 206 B

123456789101112131415
  1. /*
  2. * Auth 组件对应的路由抽象接口
  3. */
  4. abstract class AuthService {
  5. void startLoginPage();
  6. void startPopAll2LoginPage();
  7. void startPopAll2MainPage();
  8. void startResetPasswordPage();
  9. }