profile_service.dart 185 B

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