bodyList<T> method

Future<List<T>> bodyList<T>(
  1. T deserialize(
    1. Map<String, Object?> json
    )
)

The JSON array body, each element decoded with deserialize.

Implementation

Future<List<T>> bodyList<T>(
  T Function(Map<String, Object?> json) deserialize,
) =>
    extractors.bodyList<T>(deserialize).require(this);