copyWithWrapped method
Implementation
SandboxOauthSelectAccountsRequest copyWithWrapped(
{Wrapped<String>? oauthStateId, Wrapped<List<String>>? accounts}) {
return SandboxOauthSelectAccountsRequest(
oauthStateId:
(oauthStateId != null ? oauthStateId.value : this.oauthStateId),
accounts: (accounts != null ? accounts.value : this.accounts));
}