presentCardPaymentFlow method

Future<PaymentResult> presentCardPaymentFlow(
  1. BaseSession session, {
  2. List<CardBrand>? supportedBrands,
})

Implementation

Future<PaymentResult> presentCardPaymentFlow(
  BaseSession session, {
  List<CardBrand>? supportedBrands,
}) {
  return AirwallexPaymentFlutterPlatform.instance
      .presentCardPaymentFlow(session, supportedBrands: supportedBrands);
}