You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
53 lines
1.4 KiB
53 lines
1.4 KiB
class FacebookUser {
|
|
String firstname;
|
|
String surname;
|
|
String email;
|
|
String gender;
|
|
String username;
|
|
String userGUID;
|
|
String country;
|
|
String pictureUri;
|
|
String deviceToken;
|
|
String referralCode;
|
|
|
|
FacebookUser(
|
|
{this.firstname,
|
|
this.surname,
|
|
this.email,
|
|
this.gender,
|
|
this.username,
|
|
this.referralCode,
|
|
this.userGUID,
|
|
this.country,
|
|
this.pictureUri,
|
|
this.deviceToken});
|
|
|
|
factory FacebookUser.fromJSON(Map<String, dynamic> json) {
|
|
return FacebookUser(
|
|
firstname: json['firstname'],
|
|
surname: json['surname'],
|
|
email: json['email'],
|
|
gender: json['gender'],
|
|
userGUID: json['userGUID'],
|
|
username: json['username'],
|
|
country: json['country'],
|
|
pictureUri: json['pictureuri'],
|
|
referralCode: json['referral'],
|
|
deviceToken: json['devicetoken']);
|
|
}
|
|
|
|
Map<dynamic, dynamic> toJson() {
|
|
final Map<dynamic, dynamic> data = Map<dynamic, dynamic>();
|
|
data['firstname'] = this.firstname;
|
|
data['surname'] = this.surname;
|
|
data['email'] = this.email;
|
|
data['gender'] = this.gender;
|
|
data['userGUID'] = this.userGUID;
|
|
data['username'] = this.username;
|
|
data['country'] = this.country;
|
|
data['pictureuri'] = this.pictureUri;
|
|
data['devicetoken'] = this.deviceToken;
|
|
data['referral'] = this.referralCode;
|
|
return data;
|
|
}
|
|
}
|
|
|