UserFullInfo constructor

UserFullInfo({
  1. String? extra,
  2. int? client_id,
  3. ChatPhoto? personal_photo,
  4. ChatPhoto? photo,
  5. ChatPhoto? public_photo,
  6. Bool? is_blocked,
  7. Bool? can_be_called,
  8. Bool? supports_video_calls,
  9. Bool? has_private_calls,
  10. Bool? has_private_forwards,
  11. Bool? has_restricted_voice_and_video_note_messages,
  12. Bool? need_phone_number_privacy_exception,
  13. FormattedText? bio,
  14. vector<PremiumPaymentOption>? premium_gift_options,
  15. int32? group_in_common_count,
  16. BotInfo? bot_info,
})

Implementation

UserFullInfo({
  super.extra,
  super.client_id,
  this.personal_photo,
  this.photo,
  this.public_photo,
  this.is_blocked,
  this.can_be_called,
  this.supports_video_calls,
  this.has_private_calls,
  this.has_private_forwards,
  this.has_restricted_voice_and_video_note_messages,
  this.need_phone_number_privacy_exception,
  this.bio,
  this.premium_gift_options,
  this.group_in_common_count,
  this.bot_info,
});