AdjeminPay constructor

const AdjeminPay({
  1. required String clientId,
  2. required String clientSecret,
  3. required String merchantTransactionId,
  4. required String designation,
  5. required int amount,
  6. required String currencyCode,
  7. required String notificationUrl,
  8. String? buyerName,
  9. String? buyerReference,
  10. String locale = 'fr_FR',
  11. dynamic callback()?,
})

Implementation

const AdjeminPay({
  required this.clientId,
  required this.clientSecret,
  required this.merchantTransactionId,
  required this.designation,
  required this.amount,
  required this.currencyCode,
  required this.notificationUrl,
  this.buyerName,
  this.buyerReference,
  this.locale = 'fr_FR',
  this.callback,
})  ;