payment_service.dart 241 B

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