copyWith method
Implementation
AddChatMembers copyWith({int? chatId, List<int>? userIds}) => AddChatMembers(
chatId: chatId ?? this.chatId,
userIds: userIds ?? this.userIds,
);
AddChatMembers copyWith({int? chatId, List<int>? userIds}) => AddChatMembers(
chatId: chatId ?? this.chatId,
userIds: userIds ?? this.userIds,
);