Showing
1 changed file
with
1 additions
and
1 deletions
@@ -786,7 +786,7 @@ void initServices() async { | @@ -786,7 +786,7 @@ void initServices() async { | ||
786 | /// Here is where you put get_storage, hive, shared_pref initialization. | 786 | /// Here is where you put get_storage, hive, shared_pref initialization. |
787 | /// or moor connection, or whatever that's async. | 787 | /// or moor connection, or whatever that's async. |
788 | await Get.putAsync(() => DbService().init()); | 788 | await Get.putAsync(() => DbService().init()); |
789 | - await Get.put(SettingsService()).init(); | 789 | + await Get.putAsync(SettingsService()).init(); |
790 | print('All services started...'); | 790 | print('All services started...'); |
791 | } | 791 | } |
792 | 792 |
-
Please register or login to post a comment