map<T> method

T map<T>(
  1. T mapper(
    1. dynamic
    )
)

Implementation

T map<T>(T Function(dynamic) mapper) {
  return mapper(body);
}