copyWith method
Implementation
NewChatPrivacySettings copyWith({
bool? allowNewChatsFromUnknownUsers,
int? incomingPaidMessageStarCount,
}) => NewChatPrivacySettings(
allowNewChatsFromUnknownUsers:
allowNewChatsFromUnknownUsers ?? this.allowNewChatsFromUnknownUsers,
incomingPaidMessageStarCount:
incomingPaidMessageStarCount ?? this.incomingPaidMessageStarCount,
);