logPerformance static method

void logPerformance(
  1. String widgetType,
  2. String operation,
  3. int durationMicros
)

Log a performance metric

Implementation

static void logPerformance(
    String widgetType, String operation, int durationMicros) {
  if (_logPerformanceMetrics) {
    print('Sugar $widgetType: $operation took ${durationMicros}μs');
  }
}