payment_service.dart 306 B

123456789101112131415161718
  1. /*
  2. * Payment 组件对应的路由抽象接口
  3. */
  4. abstract class PaymentService {
  5. void startPaymentPage();
  6. void startChooseCardPage();
  7. void startAddCardPage();
  8. void startWithPopOfflinePaymentPage(String? popTargetRouter);
  9. Future<bool> executePayment({
  10. required String orderId,
  11. });
  12. }