copyWithWrapped method

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

Implementation

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