copyWith method

BankTransferSweepListRequest copyWith({
  1. String? clientId,
  2. String? secret,
  3. String? originationAccountId,
  4. DateTime? startTime,
  5. DateTime? endTime,
  6. int? count,
})

Implementation

BankTransferSweepListRequest copyWith(
    {String? clientId,
    String? secret,
    String? originationAccountId,
    DateTime? startTime,
    DateTime? endTime,
    int? count}) {
  return BankTransferSweepListRequest(
      clientId: clientId ?? this.clientId,
      secret: secret ?? this.secret,
      originationAccountId: originationAccountId ?? this.originationAccountId,
      startTime: startTime ?? this.startTime,
      endTime: endTime ?? this.endTime,
      count: count ?? this.count);
}