SwiftのcompactMapのように、nullを含む配列からnullを除外した配列を取得する方法です。
whereTypeで型を指定すればその型に一致する要素のみ取得することができます。
final List<String?> hoge = [null, "a", "b", null];
final fuga = hoge.whereType<String>().toList(); // [a, b]
Go to list of users who liked
More than 1 year has passed since last update.
SwiftのcompactMapのように、nullを含む配列からnullを除外した配列を取得する方法です。
whereTypeで型を指定すればその型に一致する要素のみ取得することができます。
final List<String?> hoge = [null, "a", "b", null];
final fuga = hoge.whereType<String>().toList(); // [a, b]
Register as a new user and use Qiita more conveniently
Go to list of users who liked