-
Notifications
You must be signed in to change notification settings - Fork 2
CustomData
Lejla Solak edited this page Feb 9, 2026
·
2 revisions
typealias CustomData = [String: String]
Defined as a dictionary in which the keys and values are
of type String.
let customData: [String: String] = [
"city": "New York",
"country": "USA"
]