joinCall method
Implementation
Future<void> joinCall() async {
if (await AppUtils.isNetConnected()) {
if (meetLink.isNotEmpty) {
NavUtils.offNamed(Routes.joinCallPreview, arguments: {
"callLinkId": meetLink.replaceAll(Constants.webChatLogin, "")
});
}
} else {
toToast(getTranslated("noInternetConnection"));
}
}