ApplePaymentButton constructor

const ApplePaymentButton({
  1. Key? key,
  2. required double width,
  3. required double height,
  4. required String merchantId,
  5. String countryCode = "CN",
  6. String currencyCode = "CNY",
  7. required List<SummaryItem> summaryList,
  8. Express? express,
})

Implementation

const ApplePaymentButton(
    {Key? key,
    required this.width,
    required this.height,
    required this.merchantId,
    this.countryCode = "CN",
    this.currencyCode = "CNY",
    required this.summaryList,
    this.express})
    : super(key: key);