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