orMap<R> method

Iterable<R> orMap<R>(
  1. R mapper(
    1. dynamic V
    )
)

Implementation

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