profile_service.dart 206 B

12345678910111213
  1. import 'package:auto_route/auto_route.dart';
  2. /*
  3. * Profile 组件对应的路由抽象接口
  4. */
  5. abstract class ProfileService {
  6. void startEditProfilePage();
  7. PageRouteInfo getProfileRouterInfo();
  8. }