getSingleCustomListResponse method
Endpoint used: GET /list/{id}/
Gets the data of the custom list identified by it's listId
or list uuid and returns a http response containing the data.
Implementation
Future<http.Response> getSingleCustomListResponse(String listId) async {
var unencodedPath = '/list/$listId';
final uri = 'https://$AUTHORITY$unencodedPath';
return await http.get(Uri.parse(uri));
}