copyWith method
Implementation
@override
TargetChatChosen copyWith({
bool? allowUserChats,
bool? allowBotChats,
bool? allowGroupChats,
bool? allowChannelChats,
}) =>
TargetChatChosen(
allowUserChats: allowUserChats ?? this.allowUserChats,
allowBotChats: allowBotChats ?? this.allowBotChats,
allowGroupChats: allowGroupChats ?? this.allowGroupChats,
allowChannelChats: allowChannelChats ?? this.allowChannelChats,
);