copyWith method

PaymentInitiationPaymentReverseResponse copyWith({
  1. String? refundId,
  2. WalletTransactionStatus? status,
  3. String? requestId,
})

Implementation

PaymentInitiationPaymentReverseResponse copyWith(
    {String? refundId,
    enums.WalletTransactionStatus? status,
    String? requestId}) {
  return PaymentInitiationPaymentReverseResponse(
      refundId: refundId ?? this.refundId,
      status: status ?? this.status,
      requestId: requestId ?? this.requestId);
}