mapList<T, J> method

List<J> mapList<T, J>(
  1. String key,
  2. J mapper(
    1. T t
    )
)

Implementation

List<J> mapList<T, J>(String key, J Function(T t) mapper){
   return getList<T>(key).map<J>(mapper).toList();
}