auth_service.dart 106 B

1234567
  1. /**
  2. * Auth组件对应的路由抽象接口
  3. */
  4. abstract class AuthService {
  5. Future gotoLoginPage();
  6. }