User constructor

User({
  1. required Address address,
  2. required int id,
  3. required String email,
  4. required String username,
  5. required String password,
  6. required Name name,
  7. required String phone,
})

Implementation

User({
  required this.address,
  required this.id,
  required this.email,
  required this.username,
  required this.password,
  required this.name,
  required this.phone,
});