mapNotNull<R extends Object> method
Implementation
List<R> mapNotNull<R extends Object>(R? mapper(V from)) {
return [
for (var i in this)
if (i != null) mapper(i),
].notNullList();
}
List<R> mapNotNull<R extends Object>(R? mapper(V from)) {
return [
for (var i in this)
if (i != null) mapper(i),
].notNullList();
}