copyWith method

ToggleSupergroupJoinByRequest copyWith({
  1. int? supergroupId,
  2. bool? joinByRequest,
  3. int? guardBotUserId,
  4. bool? applyToInviteLinks,
})

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,
);