Guest User

Untitled

a guest
Dec 15th, 2018
74
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.27 KB | None | 0 0
  1. class Server {
  2. final dynamic _data;
  3. final bool _result;
  4.  
  5. Server(this._data, this._result);
  6.  
  7. dynamic get data => _data;
  8. bool get result => _result;
  9.  
  10. Server.fromJson(Map<String, dynamic> json)
  11. : _data = json['data'],
  12. _result = json['result'];
  13.  
  14. }
Add Comment
Please, Sign In to add comment