UserFullInfo constructor
const
UserFullInfo({
- ChatPhoto? photo,
- required bool isBlocked,
- required bool canBeCalled,
- required bool supportsVideoCalls,
- required bool hasPrivateCalls,
- required bool hasPrivateForwards,
- required bool needPhoneNumberPrivacyException,
- required String bio,
- required String description,
- required int groupInCommonCount,
- required List<
BotCommand> commands, - dynamic extra,
- int? clientId,
Contains full information about a user
Implementation
const UserFullInfo({
this.photo,
required this.isBlocked,
required this.canBeCalled,
required this.supportsVideoCalls,
required this.hasPrivateCalls,
required this.hasPrivateForwards,
required this.needPhoneNumberPrivacyException,
required this.bio,
required this.shareText,
required this.description,
required this.groupInCommonCount,
required this.commands,
this.extra,
this.clientId,
});