copyWith method

GetChatInviteLinks copyWith({
  1. int? chatId,
  2. int? creatorUserId,
  3. bool? isRevoked,
  4. int? offsetDate,
  5. String? offsetInviteLink,
  6. int? limit,
})

Implementation

GetChatInviteLinks copyWith({
  int? chatId,
  int? creatorUserId,
  bool? isRevoked,
  int? offsetDate,
  String? offsetInviteLink,
  int? limit,
}) => GetChatInviteLinks(
  chatId: chatId ?? this.chatId,
  creatorUserId: creatorUserId ?? this.creatorUserId,
  isRevoked: isRevoked ?? this.isRevoked,
  offsetDate: offsetDate ?? this.offsetDate,
  offsetInviteLink: offsetInviteLink ?? this.offsetInviteLink,
  limit: limit ?? this.limit,
);