copyWith method
LinkPreviewTypeChat
copyWith({
- InviteLinkChatType? type,
- ChatPhoto? photo,
- bool? createsJoinRequest,
Implementation
LinkPreviewTypeChat copyWith({
InviteLinkChatType? type,
ChatPhoto? photo,
bool? createsJoinRequest,
}) => LinkPreviewTypeChat(
type: type ?? this.type,
photo: photo ?? this.photo,
createsJoinRequest: createsJoinRequest ?? this.createsJoinRequest,
);