isCallInitiatedByMe static method
Implementation
static bool isCallInitiatedByMe(Call call) {
if (call.callInitiator is User) {
User initiator = call.callInitiator as User;
return initiator.uid == CometChatUIKit.loggedInUser?.uid;
}
return false;
}