copyWithWrapped method
Implementation
ItemImportRequestUserAuth copyWithWrapped(
{Wrapped<String>? userId, Wrapped<String>? authToken}) {
return ItemImportRequestUserAuth(
userId: (userId != null ? userId.value : this.userId),
authToken: (authToken != null ? authToken.value : this.authToken));
}