UserFullInfo constructor

const UserFullInfo({
  1. ChatPhoto? personalPhoto,
  2. ChatPhoto? photo,
  3. ChatPhoto? publicPhoto,
  4. required bool isBlocked,
  5. required bool canBeCalled,
  6. required bool supportsVideoCalls,
  7. required bool hasPrivateCalls,
  8. required bool hasPrivateForwards,
  9. required bool hasRestrictedVoiceAndVideoNoteMessages,
  10. required bool hasPinnedStories,
  11. required bool needPhoneNumberPrivacyException,
  12. FormattedText? bio,
  13. required List<PremiumPaymentOption> premiumGiftOptions,
  14. required int groupInCommonCount,
  15. BotInfo? botInfo,
  16. dynamic extra,
  17. int? clientId,
})

Contains full information about a user

Implementation

const UserFullInfo({
  this.personalPhoto,
  this.photo,
  this.publicPhoto,
  required this.isBlocked,
  required this.canBeCalled,
  required this.supportsVideoCalls,
  required this.hasPrivateCalls,
  required this.hasPrivateForwards,
  required this.hasRestrictedVoiceAndVideoNoteMessages,
  required this.hasPinnedStories,
  required this.needPhoneNumberPrivacyException,
  this.bio,
  required this.premiumGiftOptions,
  required this.groupInCommonCount,
  this.botInfo,
  this.extra,
  this.clientId,
});