ZaloProfileModel constructor

ZaloProfileModel({
  1. String? birthday,
  2. String? gender,
  3. String? name,
  4. String? id,
  5. Picture? picture,
})

Implementation

ZaloProfileModel({
  this.birthday,
  this.gender,
  this.name,
  this.id,
  this.picture,
});