Update lib/src/Store.dart

This commit is contained in:
Christian 2019-06-14 11:06:25 +00:00
parent f038218cf4
commit d108f1f7e6
1 changed files with 1 additions and 1 deletions

View File

@ -185,7 +185,7 @@ class Store {
if (userUpdate.content["content"] is Map<String, dynamic>) {
final Map<String, dynamic> directMap = userUpdate.content["content"];
print("Direct Map =========> $directMap");
directMap.forEach((String key, dynamic value) {
directMap.forEach((String key, dynamic value) async{
print("Handle direct Matrix ID ===========> $key");
if (value is List<dynamic> && value.length > 0)
for (int i = 0; i < value.length; i++) {