jsonListBody property

List? get jsonListBody

Parses the response body as a JSON list.

Implementation

List<dynamic>? get jsonListBody {
  try {
    return jsonDecode(body) as List<dynamic>;
  } catch (_) {
    return null;
  }
}