copyWithWrapped method

BankTransferEventSyncRequest copyWithWrapped({
  1. Wrapped<String?>? clientId,
  2. Wrapped<String?>? secret,
  3. Wrapped<int>? afterId,
  4. Wrapped<int?>? count,
})

Implementation

BankTransferEventSyncRequest copyWithWrapped(
    {Wrapped<String?>? clientId,
    Wrapped<String?>? secret,
    Wrapped<int>? afterId,
    Wrapped<int?>? count}) {
  return BankTransferEventSyncRequest(
      clientId: (clientId != null ? clientId.value : this.clientId),
      secret: (secret != null ? secret.value : this.secret),
      afterId: (afterId != null ? afterId.value : this.afterId),
      count: (count != null ? count.value : this.count));
}