-
Notifications
You must be signed in to change notification settings - Fork 3
CustomData
Adnan Mujagić edited this page Jun 11, 2024
·
1 revision
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"
]