Skip to content

Instantly share code, notes, and snippets.

@akshitzaveri
Last active April 23, 2020 18:36
Show Gist options
  • Save akshitzaveri/a36eba41e31c3f925051517d815a4b7c to your computer and use it in GitHub Desktop.
Save akshitzaveri/a36eba41e31c3f925051517d815a4b7c to your computer and use it in GitHub Desktop.
init?(from document: [String: Any]) {
guard let idString = document["id"] as? String,
let id = Int(idString),
let name = document["name"] as? String,
let priceString = document["pricePerUnit"] as? String,
let price = Double(priceString) else { return nil }
self.init(id: id, name: name, pricePerUnit: price)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment