bodyAt method

Map<String, dynamic> bodyAt(
  1. int index
)

The decoded JSON body of the request at index.

Implementation

Map<String, dynamic> bodyAt(int index) =>
    jsonDecode(requests[index].body!) as Map<String, dynamic>;