PaymentResponse constructor

PaymentResponse({
  1. required bool success,
  2. String? responseCode,
  3. String? transactionReferenceNumber,
  4. String? message,
  5. Map<String, dynamic>? responseData,
})

Implementation

PaymentResponse({
  required this.success,
  this.responseCode,
  this.transactionReferenceNumber,
  this.message,
  this.responseData,
});