UserEntity constructor

const UserEntity({
  1. String id = "",
  2. String email = "",
  3. String name = "",
  4. String password = "",
  5. String phone = "",
  6. String photo = "",
  7. String provider = "",
})

Implementation

const UserEntity({
  super.id = "",
  this.email = "",
  this.name = "",
  this.password = "",
  this.phone = "",
  this.photo = "",
  this.provider = "",
});