getCustomListResponse function Null safety
- String listId
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> getCustomListResponse(String listId) async {
var unencodedPath = '/list/$listId';
final uri = 'https://$authority$unencodedPath';
return await http.get(Uri.parse(uri));
}