clearLogs static method

Future<void> clearLogs()

clearLogs

This will clear all the logs stored in database

Implementation

static Future<void> clearLogs() async {
  await _flogDao.deleteAll();
  print("Logs Cleared!");
}