基础库
選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。
 
 
 
 
 

16 行
351 B

  1. class ProfileModel {
  2. bool isAuth; // 是否淘宝授权
  3. ProfileModel({this.isAuth});
  4. ProfileModel.fromJson(Map<String, dynamic> json) {
  5. isAuth = json['is_taobao_auth'];
  6. }
  7. Map<String, dynamic> toJson() {
  8. final Map<String, dynamic> data = new Map<String, dynamic>();
  9. data['is_taobao_auth'] = this.isAuth;
  10. return data;
  11. }
  12. }