Advertisement
Guest User

Untitled

a guest
Mar 21st, 2019
63
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.15 KB | None | 0 0
  1. class Quote {
  2. final String quote;
  3. final String id;
  4.  
  5. Quote.fromJson(Map<String, dynamic> json)
  6. : quote = json['quote'],
  7. id = json['id'];
  8. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement