txtIsNull function

String txtIsNull(
  1. dynamic txt, {
  2. dynamic nullTxt = "-",
})

判断文字是否为空

Implementation

String txtIsNull(txt, {nullTxt = "-"}) {
  if (txt == null || txt == "") {
    return nullTxt;
  } else {
    return txt;
  }
}