IntramPaymentScreen constructor

IntramPaymentScreen({
  1. Key? key,
  2. required String public_key,
  3. required String private_key,
  4. required String secret_key,
  5. required String merchant_key,
  6. required dynamic closeAction,
  7. required dynamic initPaymentResultAction,
  8. required int amount,
  9. bool sandbox = true,
  10. String currency = "xof",
  11. required String store_name,
  12. String template = "default+",
  13. String color = "#29b3a6",
  14. required String logo_url,
  15. required bool required_user_information,
  16. dynamic custom_user_information,
})

Implementation

IntramPaymentScreen({Key? key,
  required this.public_key,
  required this.private_key,
  required this.secret_key,
  required this.merchant_key,
  required this.closeAction,
  required this.initPaymentResultAction,
  required this.amount,
  this.sandbox = true,
  this.currency = "xof",
  required this.store_name,
  this.template = "default+",
  this.color = "#29b3a6",
  required this.logo_url,
  required this.required_user_information,
  this.custom_user_information})
    : super(key: key);