getLogEntryCount method
Implementation
Future<int> getLogEntryCount({
Filter filter = Filter.empty,
}) async =>
await transaction(
(context) async {
return await context.count(
LogEntryDataBean,
filter: filter,
);
},
);