copyWithWrapped method
Implementation
WorkspaceGroupByNameResponseModel copyWithWrapped(
{Wrapped<String>? name,
Wrapped<String>? id,
Wrapped<List<String>>? membersEmails}) {
return WorkspaceGroupByNameResponseModel(
name: (name != null ? name.value : this.name),
id: (id != null ? id.value : this.id),
membersEmails:
(membersEmails != null ? membersEmails.value : this.membersEmails));
}