LRCapturePayment constructor

LRCapturePayment({
  1. String? paymentId,
  2. required String userId,
  3. required double amount,
})

Implementation

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