Исправлено падение приложения из-за попытки сделать запрос к бд, после закрытия соединения с ней

This commit is contained in:
Ivan Murashov
2017-09-26 11:35:30 +03:00
parent 9f2bf14199
commit 7a1dc84fa1
5 changed files with 40 additions and 40 deletions

View File

@@ -137,7 +137,4 @@ class SqliteHelper {
Future clear() async {
return await db.delete(tableSession, where: null);
}
Future close() async => db.close();
}