CheckoutFormInitialize constructor

CheckoutFormInitialize({
  1. required String cardHolderName,
  2. required String checkoutFormContent,
  3. required String token,
  4. required int tokenExpireTime,
  5. required String paymentPageUrl,
  6. dynamic json,
})

Implementation

CheckoutFormInitialize(
    {required this.cardHolderName,
    required this.checkoutFormContent,
    required this.token,
    required this.tokenExpireTime,
    required this.paymentPageUrl,
    json})
    : super.fromJson(json);