profile_service.dart 117 B

12345678
  1. /**
  2. * Profile组件对应的路由抽象接口
  3. */
  4. abstract class ProfileService {
  5. Future<bool> isUserLogin();
  6. }