checkHasOtherGroupExceptContact static method
Implementation
static bool checkHasOtherGroupExceptContact({bool showToast=true}){
Log.i(tag, "checkHasOtherGroupExceptContact:$showToast");
if(pocChangeNotifier.groups.length>2){
return true;
}else{
if(showToast){
playText(getTranslation("NoOtherGroup"), true);
ToastUtils.instance.show(getTranslation("NoOtherGroup"));
}
return false;
}
}