swift 5 check if dictionary contains key code example
Example: swift 5 check if dictionary contains key
if let key = self.dictionary["key"] {
print(key) // returns value
}
// OR
extension Dictionary {
func contains(key: Key) -> Bool {
self.index(forKey: key) != nil
}
}