ProfilePhoto constructor

ProfilePhoto({
  1. String? extra,
  2. int? client_id,
  3. int64? id,
  4. File? small,
  5. File? big,
  6. Minithumbnail? minithumbnail,
  7. Bool? has_animation,
  8. Bool? is_personal,
})

Implementation

ProfilePhoto({
  super.extra,
  super.client_id,
  this.id,
  this.small,
  this.big,
  this.minithumbnail,
  this.has_animation,
  this.is_personal,
});