isPerformanceCollectionEnabled method

Future<bool> isPerformanceCollectionEnabled()

Determines whether custom performance monitoring is enabled or disabled.

True if custom performance monitoring is enabled and false if performance monitoring is disabled. This is for dynamic enable/disable state. This does not reflect whether instrumentation is enabled/disabled.

Implementation

Future<bool> isPerformanceCollectionEnabled() {
  throw UnimplementedError(
    'isPerformanceCollectionEnabled() is not implemented',
  );
}