body<T> method

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

The JSON object body, decoded with deserialize.

Implementation

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