copyWithWrapped method

WorkspaceGroupByNameResponseModel copyWithWrapped({
  1. Wrapped<String>? name,
  2. Wrapped<String>? id,
  3. Wrapped<List<String>>? membersEmails,
})

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));
}