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() {
  // TODO: update API to match web & iOS for 'dataCollectionEnabled' & 'instrumentationEnabled'
  return _delegate.isPerformanceCollectionEnabled();
}