copyWith method

TransferRepaymentListRequest copyWith({
  1. String? clientId,
  2. String? secret,
  3. DateTime? startDate,
  4. DateTime? endDate,
  5. int? count,
  6. int? offset,
})

Implementation

TransferRepaymentListRequest copyWith(
    {String? clientId,
    String? secret,
    DateTime? startDate,
    DateTime? endDate,
    int? count,
    int? offset}) {
  return TransferRepaymentListRequest(
      clientId: clientId ?? this.clientId,
      secret: secret ?? this.secret,
      startDate: startDate ?? this.startDate,
      endDate: endDate ?? this.endDate,
      count: count ?? this.count,
      offset: offset ?? this.offset);
}