copyWith method
Implementation
BotMediaPreviewInfo copyWith({
List<BotMediaPreview>? previews,
List<String>? languageCodes,
}) => BotMediaPreviewInfo(
previews: previews ?? this.previews,
languageCodes: languageCodes ?? this.languageCodes,
);