42 lines
851 B
Dart
42 lines
851 B
Dart
class User {
|
|
final int id;
|
|
final String name;
|
|
final String email;
|
|
final String? phone;
|
|
final String role;
|
|
final DateTime? createdAt;
|
|
|
|
User({
|
|
required this.id,
|
|
required this.name,
|
|
required this.email,
|
|
this.phone,
|
|
required this.role,
|
|
this.createdAt,
|
|
});
|
|
|
|
factory User.fromJson(Map<String, dynamic> json) {
|
|
return User(
|
|
id: json['id'] ?? 0,
|
|
name: json['name'] ?? '',
|
|
email: json['email'] ?? '',
|
|
phone: json['phone'],
|
|
role: json['role'] ?? 'user',
|
|
createdAt: json['created_at'] != null
|
|
? DateTime.parse(json['created_at'])
|
|
: null,
|
|
);
|
|
}
|
|
|
|
Map<String, dynamic> toJson() {
|
|
return {
|
|
'id': id,
|
|
'name': name,
|
|
'email': email,
|
|
'phone': phone,
|
|
'role': role,
|
|
'created_at': createdAt?.toIso8601String(),
|
|
};
|
|
}
|
|
}
|