copyWith method

RevokeChatInviteLink copyWith({
  1. int? chatId,
  2. String? inviteLink,
})

Implementation

RevokeChatInviteLink copyWith({
  int? chatId,
  String? inviteLink,
}) =>
    RevokeChatInviteLink(
      chatId: chatId ?? this.chatId,
      inviteLink: inviteLink ?? this.inviteLink,
    );