File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -268,15 +268,15 @@ class Scope {
268268 }
269269
270270 /// Sets an extra to the Scope
271- @Deprecated ('Additional Data is deprecated in favor of structured Contexts and should be avoided when possible' )
271+ @Deprecated ('Additional data is deprecated in favor of structured Contexts and should be avoided when possible' )
272272 Future <void > setExtra (String key, dynamic value) async {
273273 _setExtraSync (key, value);
274274 await _callScopeObservers (
275275 (scopeObserver) async => await scopeObserver.setExtra (key, value));
276276 }
277277
278278 /// Removes an extra from the Scope
279- @Deprecated ('Additional Data is deprecated in favor of structured Contexts and should be avoided when possible' )
279+ @Deprecated ('Additional data is deprecated in favor of structured Contexts and should be avoided when possible' )
280280 Future <void > removeExtra (String key) async {
281281 _extra.remove (key);
282282 await _callScopeObservers (
You can’t perform that action at this time.
0 commit comments