UserFullInfo constructor

const UserFullInfo({
  1. ChatPhoto? photo,
  2. required bool isBlocked,
  3. required bool canBeCalled,
  4. required bool supportsVideoCalls,
  5. required bool hasPrivateCalls,
  6. required bool hasPrivateForwards,
  7. required bool needPhoneNumberPrivacyException,
  8. required String bio,
  9. required String shareText,
  10. required String description,
  11. required int groupInCommonCount,
  12. required List<BotCommand> commands,
  13. dynamic extra,
  14. 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,
});