copyWith method

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

Implementation

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