copyWithWrapped method

TransactionsRulesListRequest copyWithWrapped({
  1. Wrapped<String?>? clientId,
  2. Wrapped<String>? accessToken,
  3. Wrapped<String?>? secret,
})

Implementation

TransactionsRulesListRequest copyWithWrapped(
    {Wrapped<String?>? clientId,
    Wrapped<String>? accessToken,
    Wrapped<String?>? secret}) {
  return TransactionsRulesListRequest(
      clientId: (clientId != null ? clientId.value : this.clientId),
      accessToken:
          (accessToken != null ? accessToken.value : this.accessToken),
      secret: (secret != null ? secret.value : this.secret));
}