json decoding and optionals code example
Example: json decoding and optionals
struct BlogPost: Decodable {
let title: String
/// Define a key as optional if it can be returned as `nil` or if it does not always exist in the JSON.
let subtitle: String?
}