KKiaPay constructor

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

Implementation

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