2
3

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 1 year has passed since last update.

【Flutter】dartでListからnullを除外する

Posted at

SwiftのcompactMapのように、nullを含む配列からnullを除外した配列を取得する方法です。
whereTypeで型を指定すればその型に一致する要素のみ取得することができます。

final List<String?> hoge = [null, "a", "b", null];
final fuga = hoge.whereType<String>().toList(); // [a, b]

参考
https://stackoverflow.com/questions/34513924/what-is-the-best-way-to-fillter-null-from-a-list-in-dart-language

2
3
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
2
3

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?