updateGroupChatTitle method

Future<void> updateGroupChatTitle({
  1. required String groupId,
  2. required String title,
})

throw exception if group not exist or current user not in group and current user not admin throw No internet connection

Implementation

Future<void> updateGroupChatTitle({
  required String groupId,
  required String title,
}) async {
  await _vChatUsersApi.updateGroupTitle(groupId: groupId, title: title);
}