LRCapturePayment constructor

LRCapturePayment({
  1. String? paymentId,
  2. required String userId,
  3. required double amount,
  4. PaymentType? type,
  5. PaymentStatus? status,
})

Implementation

LRCapturePayment({
  this.paymentId,
  required this.userId,
  required this.amount,
  this.type,
  this.status,
});