class UserModel { int id = 0; String name = ''; String email = ''; String password = ''; String token = ''; UserModel({ required this.id, required this.name, required this.email, required this.password, required this.token, }); }