2
0
mirror of https://github.com/esiur/esiur-dart.git synced 2026-04-02 09:38:20 +00:00
This commit is contained in:
2020-01-04 17:55:09 +03:00
parent 9c15b830dd
commit f6e7a2629c
10 changed files with 123 additions and 35 deletions

View File

@@ -26,7 +26,7 @@ class AsyncBag<T> extends AsyncReply<List<T>>
var k = _replies[i];
var index = i;
k.then((r)
k.then<dynamic>((r)
{
_results[index] = r;
_count++;