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