copyWith method

PaymentInitiationRecipientCreateResponse copyWith({
  1. String? recipientId,
  2. String? requestId,
})

Implementation

PaymentInitiationRecipientCreateResponse copyWith(
    {String? recipientId, String? requestId}) {
  return PaymentInitiationRecipientCreateResponse(
      recipientId: recipientId ?? this.recipientId,
      requestId: requestId ?? this.requestId);
}