您可以使用List的removeWhere方法,如下所示:
removeWhere
List a = [null, 2, null]; a.removeWhere((value) => value == null); print(a); // prints [2]