getMsg static method
会议不在进行中,或者会议不存在
Implementation
static String getMsg(String? msg, [String? defaultTips]) {
if (msg == null || msg.isEmpty) {
return (defaultTips == null || defaultTips.isEmpty)
? '网络连接失败,请检查你的网络连接!'
: defaultTips;
}
return msg;
}