bodyListParser<T> function

List<T> bodyListParser<T>(
  1. String body,
  2. ObjectMapper om
)

internal parser/caster to list

Implementation

List<T> bodyListParser<T>(String body, ObjectMapper om) =>
    om.deserializeList<T>(body);