dispose method

Future<void> dispose()

Implementation

Future<void> dispose() async {
  final db = await getOpenDatabase();
  await db.close();
}