基础库
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符
 
 
 
 
 

20 行
418 B

  1. /// 判空工具类
  2. class EmptyUtil {
  3. /// 判断是否为空,object的类型可以为:String Map List
  4. static bool isEmpty(Object object) {
  5. if (null == object) return true;
  6. if (object is String && object.isEmpty) {
  7. return true;
  8. }
  9. if (object is List && object.isEmpty) {
  10. return true;
  11. }
  12. if (object is Map && object.isEmpty) {
  13. return true;
  14. }
  15. return false;
  16. }
  17. }