基础库
Não pode escolher mais do que 25 tópicos Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.

empty_util.dart 418 B

12345678910111213141516171819
  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. }