unboxMappedList<T> method

List<T> unboxMappedList<T>(
  1. T mapper(
    1. FluentJson
    )
)

Implementation

List<T> unboxMappedList<T>(T Function(FluentJson) mapper) =>
    unboxIterable().map(mapper).toList();