LazerPayData constructor

LazerPayData({
  1. required String publicKey,
  2. required String name,
  3. required String email,
  4. required String amount,
  5. String reference = '',
  6. bool acceptPartialPayment = false,
  7. LazerPayCurency currency = LazerPayCurency.NGN,
  8. Map<String, dynamic> metadata = const {},
})

Implementation

LazerPayData({
  required this.publicKey,
  required this.name,
  required this.email,
  required this.amount,
  this.businessLogo = '',
  this.reference = '',
  this.acceptPartialPayment = false,
  this.currency = LazerPayCurency.NGN,
  this.metadata = const {},
});