File tree Expand file tree Collapse file tree 2 files changed +5
-5
lines changed Expand file tree Collapse file tree 2 files changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -90,28 +90,28 @@ class OptimizelyFlutterSdk {
90
90
return await _addLogEventNotificationListener (callback);
91
91
}
92
92
93
- /// Allows user to listen to supported notifications.
93
+ /// Allows user to listen to supported Decision notifications.
94
94
Future <CancelListening > _addDecisionNotificationListener (
95
95
DecisionNotificationCallback callback) async {
96
96
return await OptimizelyClientWrapper .addDecisionNotificationListener (
97
97
_sdkKey, callback);
98
98
}
99
99
100
- /// Allows user to listen to supported notifications.
100
+ /// Allows user to listen to supported Track notifications.
101
101
Future <CancelListening > _addTrackNotificationListener (
102
102
TrackNotificationCallback callback) async {
103
103
return await OptimizelyClientWrapper .addTrackNotificationListener (
104
104
_sdkKey, callback);
105
105
}
106
106
107
- /// Allows user to listen to supported notifications.
107
+ /// Allows user to listen to supported LogEvent notifications.
108
108
Future <CancelListening > _addLogEventNotificationListener (
109
109
LogEventNotificationCallback callback) async {
110
110
return await OptimizelyClientWrapper .addLogEventNotificationListener (
111
111
_sdkKey, callback);
112
112
}
113
113
114
- /// Allows user to listen to supported notifications.
114
+ /// Allows user to listen to supported Project Config Update notifications.
115
115
Future <CancelListening > _addConfigUpdateNotificationListener (
116
116
MultiUseCallback callback) async {
117
117
return await OptimizelyClientWrapper .addConfigUpdateNotificationListener (
Original file line number Diff line number Diff line change @@ -65,7 +65,7 @@ class Constants {
65
65
static const String decisionCallBackListener = "decisionCallbackListener" ;
66
66
static const String logEventCallbackListener = "logEventCallbackListener" ;
67
67
static const String configUpdateCallBackListener =
68
- "configUpdateCallBackListener " ;
68
+ "projectConfigUpdateCallBackListener " ;
69
69
70
70
// Response keys
71
71
static const String responseSuccess = "success" ;
You can’t perform that action at this time.
0 commit comments