removeExtra method

Future<void> removeExtra(
  1. String key
)

Removes an extra from the Scope

Implementation

Future<void> removeExtra(String key) async {
  _extra.remove(key);
  await _callScopeObservers(
      (scopeObserver) async => await scopeObserver.removeExtra(key));
}