PaymobParams constructor

const PaymobParams({
  1. required String publicKey,
  2. required String clientSecret,
  3. String? appName,
  4. Color? buttonBackgroundColor,
  5. Color? buttonTextColor,
  6. bool? saveCardDefault,
  7. bool? showSaveCard,
})

Implementation

const PaymobParams({
  required this.publicKey,
  required this.clientSecret,
  this.appName,
  this.buttonBackgroundColor,
  this.buttonTextColor,
  this.saveCardDefault,
  this.showSaveCard,
});