set<V> method
Implementation
void set<V>(String key, V value) {
if (_context.containsKey(_key)) {
final context = _context[_key]!;
context[key] = value;
return;
}
throw StateError("Context '$_key' not found");
}
void set<V>(String key, V value) {
if (_context.containsKey(_key)) {
final context = _context[_key]!;
context[key] = value;
return;
}
throw StateError("Context '$_key' not found");
}