copyWith method
Implementation
ToggleSupergroupJoinByRequest copyWith({
int? supergroupId,
bool? joinByRequest,
int? guardBotUserId,
bool? applyToInviteLinks,
}) => ToggleSupergroupJoinByRequest(
supergroupId: supergroupId ?? this.supergroupId,
joinByRequest: joinByRequest ?? this.joinByRequest,
guardBotUserId: guardBotUserId ?? this.guardBotUserId,
applyToInviteLinks: applyToInviteLinks ?? this.applyToInviteLinks,
);