iOS Swift - Networking
Given this JSON string:
And this Swift struct:
What will be the value of
{"id": 10, "title": "Book"}And this Swift struct:
struct Item: Codable { var id: Int; var title: String }What will be the value of
item.title after decoding?