copyWith method
Implementation
RpaySuccessResponse copyWith({
String? status,
String? desc,
String? paymentId,
String? orderId,
String? signature,
}) {
return RpaySuccessResponse(
status: status ?? this.status,
desc: desc ?? this.desc,
paymentId: paymentId ?? this.paymentId,
orderId: orderId ?? this.orderId,
signature: signature ?? this.signature,
);
}