startSession method
Starts a new profiling session
Implementation
ProfilerSession startSession({String category = 'default'}) {
if (!_enabled) return _NoOpProfilerSession();
final session = DefaultProfilerSession._(category);
_activeSessions[session.id] = session;
return session;
}