payment_service.dart 174 B

12345678910111213
  1. /*
  2. * Payment 组件对应的路由抽象接口
  3. */
  4. abstract class PaymentService {
  5. void startPaymentPage();
  6. void startChooseCardPage();
  7. void startAddCardPage();
  8. }