copyWith method

PaymentInitiationPaymentListRequest copyWith({
  1. String? clientId,
  2. String? secret,
  3. int? count,
  4. String? cursor,
})

Implementation

PaymentInitiationPaymentListRequest copyWith(
    {String? clientId, String? secret, int? count, String? cursor}) {
  return PaymentInitiationPaymentListRequest(
      clientId: clientId ?? this.clientId,
      secret: secret ?? this.secret,
      count: count ?? this.count,
      cursor: cursor ?? this.cursor);
}