auth_service.dart 231 B

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