PaymentProcessingResponse constructor

PaymentProcessingResponse({
  1. required String result,
  2. String? redirectUrl,
  3. List<Map<String, dynamic>>? redirectParams,
  4. Map<String, dynamic>? returnUrlQueryParams,
  5. String? declineMessage,
  6. String? publicId,
})

Implementation

PaymentProcessingResponse({
  required this.result,
  this.redirectUrl,
  this.redirectParams,
  this.returnUrlQueryParams,
  this.declineMessage,
  this.publicId,
});