How to make LocalizedStingKey type conform to Codable protocol in Swift? A simple Person struct. If do not remove country property, compiler not work.
struct Person: Codable {
let name: String
let age: Int
let description: LocalizedKeyString // more words in description property
}