copyWith method
Implementation
AddBotMediaPreview copyWith({
int? botUserId,
String? languageCode,
InputStoryContent? content,
}) => AddBotMediaPreview(
botUserId: botUserId ?? this.botUserId,
languageCode: languageCode ?? this.languageCode,
content: content ?? this.content,
);