UserInfoModel constructor

UserInfoModel({
  1. String? name,
  2. String? surname,
  3. String? email,
  4. String? mobile,
  5. String? id,
  6. String? birthdate,
  7. String? gender,
  8. String? username,
  9. bool? rcvNot,
  10. String? tags,
  11. String? lang,
  12. List<SMMemberFieldItemModel>? memberFields,
})

Implementation

UserInfoModel({
  this.name,
  this.surname,
  this.email,
  this.mobile,
  this.id,
  this.birthdate,
  this.gender,
  this.username,
  this.rcvNot,
  this.tags,
  this.lang,
  this.memberFields,
});