csatBodies property

List<Map<String, dynamic>> get csatBodies

Decoded bodies of the CSAT submissions.

Implementation

List<Map<String, dynamic>> get csatBodies => requests
    .where((r) => r.url.endsWith('/csat'))
    .map((r) => jsonDecode(r.body!) as Map<String, dynamic>)
    .toList();