copyWith method

ListAllRefundQueryParams copyWith({
  1. String? id,
  2. String? before,
  3. String? after,
  4. String? limit,
})

Implementation

ListAllRefundQueryParams copyWith({
  String? id,
  String? before,
  String? after,
  String? limit,
}) {
  return ListAllRefundQueryParams(
    paymentId: id ?? paymentId,
    before: before ?? this.before,
    after: after ?? this.after,
    limit: limit ?? this.limit,
  );
}