copyWith method
Implementation
WorkspaceGroupByNameResponseModel copyWith(
{String? name, String? id, List<String>? membersEmails}) {
return WorkspaceGroupByNameResponseModel(
name: name ?? this.name,
id: id ?? this.id,
membersEmails: membersEmails ?? this.membersEmails);
}