KKiaPayArguments constructor

const KKiaPayArguments({
  1. Key? key,
  2. required int amount,
  3. required String reason,
  4. String? phone,
  5. String? name,
  6. String? email,
  7. String? data,
  8. String? partnerId,
  9. required dynamic callback(
    1. Map<String, dynamic>,
    2. BuildContext
    ),
  10. required String apikey,
  11. required bool? sandbox,
  12. String? theme,
  13. List<String>? countries,
  14. List<String>? paymentMethods,
})

Implementation

const KKiaPayArguments({
  this.key,
  required this.amount,
  required this.reason,
  this.phone,
  this.name,
  this.email,
  this.data,
  this.partnerId,
  required this.callback,
  required this.apikey,
  required this.sandbox,
  this.theme,
  this.countries,
  this.paymentMethods,
});