IntramPaymentScreen constructor
IntramPaymentScreen({
- Key? key,
- required String public_key,
- required String private_key,
- required String secret_key,
- required String merchant_key,
- required dynamic closeAction,
- required dynamic initPaymentResultAction,
- required int amount,
- bool sandbox = true,
- String currency = "xof",
- required String store_name,
- String template = "default+",
- String color = "#29b3a6",
- required String logo_url,
- required bool required_user_information,
- 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);