map<T> function

dynamic Function(dynamic x) map<T>(
  1. Function fn
)

Implementation

Function(dynamic x) map<T>(Function fn) => (x) => fn(x);