getLogCountForSession method
Implementation
Future<int> getLogCountForSession(String sessionId) {
if (sessionId == _currentSessionId) {
return Future.value(_currentSessionLogs.length);
}
return ApiDatabaseService().getLogCountForSession(sessionId);
}