map<E> method

E map<E>(
  1. E mapper(
    1. T value
    )
)

Implementation

E map<E>(E Function(T value) mapper) {
  return mapper(this);
}