clearLogs method

Future<void> clearLogs()

Implementation

Future<void> clearLogs() async {
  final db = await instance.database;
  await db.delete('api_logs');
}