ProfileResponse constructor

ProfileResponse({
  1. String id = '',
  2. String avatar = '',
  3. String dateOfBirth = '',
  4. String email = '',
  5. int gender = 0,
  6. bool hasPassword = false,
  7. bool isExternal = false,
  8. bool isFriend = false,
  9. String name = '',
  10. String phoneNumber = '',
  11. String userName = '',
})

Implementation

ProfileResponse({
  this.id = '',
  this.avatar = '',
  this.dateOfBirth = '',
  this.email = '',
  this.gender = 0,
  this.hasPassword = false,
  this.isExternal = false,
  this.isFriend = false,
  this.name = '',
  this.phoneNumber = '',
  this.userName = '',
});