Advertisement
Guest User

Untitled

a guest
Jun 16th, 2019
50
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.18 KB | None | 0 0
  1. class PostRequest extends RequestMapable {
  2. final String userId;
  3.  
  4. PostRequest(this.userId);
  5.  
  6. @override
  7. Map<String, dynamic> toJson() => {
  8. 'userId': userId,
  9. };
  10. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement