profile_service.dart 343 B

123456789101112131415161718
  1. /*
  2. * Profile 组件对应的路由抽象接口
  3. */
  4. import 'package:flutter/cupertino.dart';
  5. abstract class ProfileService {
  6. void startEditProfilePage({BuildContext? context});
  7. void startMyHouseHoldPage({BuildContext? context});
  8. void startMyEstatePage({BuildContext? context});
  9. void startSettingPage({BuildContext? context});
  10. }