copyWithWrapped method
Implementation
Session copyWithWrapped(
{Wrapped<bool?>? $new,
Wrapped<String?>? sessionId,
Wrapped<Map<String, dynamic>?>? attributes,
Wrapped<Application?>? application,
Wrapped<User?>? user}) {
return Session(
$new: ($new != null ? $new.value : this.$new),
sessionId: (sessionId != null ? sessionId.value : this.sessionId),
attributes: (attributes != null ? attributes.value : this.attributes),
application:
(application != null ? application.value : this.application),
user: (user != null ? user.value : this.user));
}