@@ -339,7 +339,6 @@ class AnalyticsImpl implements Analytics {
339
339
final File _clientIdFile;
340
340
final UserProperty _userProperty;
341
341
final LogHandler _logHandler;
342
- final String ? _enabledFeatures;
343
342
344
343
/// Tells the client if they need to show a message to the
345
344
/// user; this will return true if it is the first time the
@@ -407,8 +406,8 @@ class AnalyticsImpl implements Analytics {
407
406
truncateStringToLength (io.Platform .operatingSystemVersion, 36 ),
408
407
locale: io.Platform .localeName,
409
408
clientIde: clientIde,
409
+ enabledFeatures: enabledFeatures,
410
410
),
411
- _enabledFeatures = enabledFeatures,
412
411
_configHandler = ConfigHandler (
413
412
homeDirectory: homeDirectory,
414
413
configFile: homeDirectory
@@ -614,7 +613,6 @@ class AnalyticsImpl implements Analytics {
614
613
eventName: event.eventName,
615
614
eventData: event.eventData,
616
615
userProperty: _userProperty,
617
- enabledFeatures: _enabledFeatures,
618
616
);
619
617
620
618
if (_enableAsserts) checkBody (body);
@@ -656,7 +654,6 @@ class AnalyticsImpl implements Analytics {
656
654
eventName: collectionEvent.eventName,
657
655
eventData: collectionEvent.eventData,
658
656
userProperty: _userProperty,
659
- enabledFeatures: _enabledFeatures,
660
657
);
661
658
662
659
_logHandler.save (data: body);
@@ -667,7 +664,6 @@ class AnalyticsImpl implements Analytics {
667
664
clientId: clientId,
668
665
eventName: collectionEvent.eventName,
669
666
eventData: collectionEvent.eventData,
670
- enabledFeatures: _enabledFeatures,
671
667
userProperty: _userProperty,
672
668
);
673
669
@@ -778,7 +774,6 @@ class FakeAnalytics extends AnalyticsImpl {
778
774
eventName: event.eventName,
779
775
eventData: event.eventData,
780
776
userProperty: _userProperty,
781
- enabledFeatures: _enabledFeatures,
782
777
);
783
778
784
779
if (_enableAsserts) checkBody (body);
0 commit comments