PaymentData constructor

PaymentData({
  1. required String merchantId,
  2. required String merchantTransactionId,
  3. required InstrumentResponse instrumentResponse,
})

Implementation

PaymentData({
  required this.merchantId,
  required this.merchantTransactionId,
  required this.instrumentResponse,
});