mirror of
https://github.com/SyncrowIOT/web.git
synced 2025-07-09 22:57:21 +00:00
30 lines
654 B
Dart
30 lines
654 B
Dart
class SignUpModel {
|
|
final String email;
|
|
final String password;
|
|
final String firstName;
|
|
final String lastName;
|
|
|
|
SignUpModel(
|
|
{required this.email,
|
|
required this.password,
|
|
required this.firstName,
|
|
required this.lastName});
|
|
|
|
factory SignUpModel.fromJson(Map<String, dynamic> json) {
|
|
return SignUpModel(
|
|
email: json['email'],
|
|
password: json['password'],
|
|
firstName: json['firstName'],
|
|
lastName: json['lastName']);
|
|
}
|
|
|
|
Map<String, dynamic> toJson() {
|
|
return {
|
|
'email': email,
|
|
'password': password,
|
|
'firstName': firstName,
|
|
'lastName': lastName,
|
|
};
|
|
}
|
|
}
|