hasKey<K> method
Implementation
bool hasKey<K>(K key) {
if (_context.containsKey(_key)) {
final context = _context[_key]!;
return context.containsKey(key);
}
return false;
}
bool hasKey<K>(K key) {
if (_context.containsKey(_key)) {
final context = _context[_key]!;
return context.containsKey(key);
}
return false;
}