txtIsNull function
判断文字是否为空
Implementation
String txtIsNull(txt, {nullTxt = "-"}) {
if (txt == null || txt == "") {
return nullTxt;
} else {
return txt;
}
}
判断文字是否为空
String txtIsNull(txt, {nullTxt = "-"}) {
if (txt == null || txt == "") {
return nullTxt;
} else {
return txt;
}
}