getCountAll method
Implementation
Future<int> getCountAll() async {
final totalCountExpression = countAll();
final query = db.selectOnly(db.systemLog)
..addColumns([totalCountExpression]);
final row = await query.getSingle();
return row.read(totalCountExpression) ?? 0;
}