Handle group chat metadata
Group chats can have metadata, like names and images. Metadata can help users more easily identify their group chats. You can also set group chat metadata when creating a group chat.
Get a group chat name
React Native
const groupName =await group.groupName();
Update a group chat name
React Native
await group.updateName("New Group Name");
Get a group chat image URL
React Native
const groupName = await group.imageUrlSquare();
Update a group chat image URL
React Native
await group.updateImageUrlSquare("ImageURL");