How to initialize OrderedDictionary – Swift Collections

Reading from the github docs I can see how to use it, but when I try to initialize it (to empty): var responses: OrderedDictionary = [:] it says: Empty collection literal requires an explicit type I tried this: var responses: OrderedDictionary<String: <TransactionsDataItemsClassAModel>> = [:] but doesn’t work, what’s the proper way to initialize this? This… Read More How to initialize OrderedDictionary – Swift Collections