Group calling like whatsapp using sendbird

[Problem/Question]
// Detailed description of issue.
I need to implement group video calling like whatsapp in react native. So Is it possible in any way that we can invite using react native sdk as I need to use react natives predefined views also that is provided by sendbird react native sdk.
also do we get voip notification when we send and invite?


// If problem, please fill out the below. If question, please delete.
[SDK Version]
// What version of the SDK are you using?
@sendbird/calls-react-native”: “^1.0.2”

[Reproduction Steps]
// Please provide reproduction steps and, if possible, code snippets.
const roomParams = {
roomType: SendbirdCalls.RoomType.SMALL_ROOM_FOR_VIDEO,
customItems: { invitedUsers: currentChannel.data },
};

        const room = await SendbirdCalls.createRoom(roomParams);
        console.log("sendbird rooms ======== ", room)
        // Room has been created successfully.
        const enterParams = {
            videoEnabled: type == 'video' ? true : false,
            audioEnabled: true
        }

        await room.enter(enterParams)
        console.log("enterParams ======== ", room)
        // for(let i = 0 ; i < users.length ; i++){
        //     if(userProfile?.data?.phone != users[i]){
        //         const invitation = await room.sendInvitation(users[i]);
        //         console.log("invitation ======== ", invitation)
        //     }
        // }

[Frequency]
// How frequently is this issue occurring?
Everytime

[Current impact]
// How is this currently impacting your implementation?
I am blocked with implementation.