22 lines
494 B
Dart
22 lines
494 B
Dart
|
class LoginModel {
|
||
|
final String userName;
|
||
|
final String token;
|
||
|
final String email;
|
||
|
final int userId;
|
||
|
|
||
|
LoginModel(this.userName, this.token, this.email, this.userId);
|
||
|
|
||
|
LoginModel.fromJson(Map<String, dynamic> json)
|
||
|
: userName = json['name'],
|
||
|
token = json['token'],
|
||
|
email = json['email'],
|
||
|
userId = json['pk'];
|
||
|
|
||
|
Map<String, dynamic> toJson() => {
|
||
|
'name': userName,
|
||
|
'token': token,
|
||
|
'email': email,
|
||
|
'pk': userId,
|
||
|
};
|
||
|
}
|