hasKey<K> method

bool hasKey<K>(
  1. K key
)

Implementation

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

  return false;
}