userInHouseCheck method
void
userInHouseCheck()
Implementation
void userInHouseCheck() async {
try {
await widget.rtmClient
.acceptRemoteInvitation({'callerId': widget.userId});
} catch (e) {
printLog(e);
}
joinChannel();
}