orMap<R> method
Implementation
Iterable<R> orMap<R>(R mapper(V)) {
if (this == null) return const [];
return this!.map(mapper);
}
Iterable<R> orMap<R>(R mapper(V)) {
if (this == null) return const [];
return this!.map(mapper);
}