getLogsForSession method
Implementation
Future<List<ApiLogModel>> getLogsForSession(String sessionId) {
if (sessionId == _currentSessionId) {
return Future.value(List.from(_currentSessionLogs));
}
return ApiDatabaseService().getLogsForSession(sessionId);
}