ChatMember constructor
ChatMember({
- required User user,
- required String status,
- String? customTitle,
- int? untilDate,
- bool? canBeEdited,
- bool? canPostMessages,
- bool? canEditMessages,
- bool? canDeleteMessages,
- bool? canRestrictMembers,
- bool? canPromoteMembers,
- bool? canChangeInfo,
- bool? canInviteUsers,
- bool? canPinMessages,
- bool? isMember,
- bool? canSendMessages,
- bool? canSendMediaMessages,
- bool? canSendPolls,
- bool? canSendOtherMessages,
- bool? canAddWebPagePreviews,
- bool? canManageVideoChats,
- bool? canManageChat,
- bool? isAnonymous,
Basic constructor
Implementation
ChatMember({
required this.user,
required this.status,
this.customTitle,
this.untilDate,
this.canBeEdited,
this.canPostMessages,
this.canEditMessages,
this.canDeleteMessages,
this.canRestrictMembers,
this.canPromoteMembers,
this.canChangeInfo,
this.canInviteUsers,
this.canPinMessages,
this.isMember,
this.canSendMessages,
this.canSendMediaMessages,
this.canSendPolls,
this.canSendOtherMessages,
this.canAddWebPagePreviews,
this.canManageVideoChats,
this.canManageChat,
this.isAnonymous,
});