copyWith method
Implementation
PaymentStatusResponse copyWith({
PaymentStatusData? data,
}) {
return PaymentStatusResponse(
data: data ?? this.data,
);
}
PaymentStatusResponse copyWith({
PaymentStatusData? data,
}) {
return PaymentStatusResponse(
data: data ?? this.data,
);
}