copyWith method

Implementation

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