copyWith method
GetChatInviteLinkMembers
copyWith({
- int? chatId,
- String? inviteLink,
- bool? onlyWithExpiredSubscription,
- ChatInviteLinkMember? offsetMember,
- int? limit,
Implementation
GetChatInviteLinkMembers copyWith({
int? chatId,
String? inviteLink,
bool? onlyWithExpiredSubscription,
ChatInviteLinkMember? offsetMember,
int? limit,
}) => GetChatInviteLinkMembers(
chatId: chatId ?? this.chatId,
inviteLink: inviteLink ?? this.inviteLink,
onlyWithExpiredSubscription:
onlyWithExpiredSubscription ?? this.onlyWithExpiredSubscription,
offsetMember: offsetMember ?? this.offsetMember,
limit: limit ?? this.limit,
);