Dart HttpRequest polling
问题 I have a web app that have a Timer that fires a poll to get data every 3 seconds. It works fine for about 2.5 minutes then Chromium crashes. My request Dart looks like this HttpRequest.getString('data/get_load_history_recent.json') .then((e) => _recentHistoryResponse(e)) .catchError((e) => _recentHistoryError(e)); Can you think of any reasons why this would happen? I assume it's a memory leak... Edit: Here is my _recentHistoryResponse() void _recentHistoryResponse(String data) { Map obj =