perfLog function
Logs a single measurement to the Flutter DevTools timeline.
Implementation
void perfLog(String name, int microseconds) {
if (!_enabled) return;
developer.Timeline.instantSync(name, arguments: {
'duration_us': microseconds,
'category': 'fluent_editor',
});
}