auth_service.dart 173 B

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