copyWith method
Implementation
@override
InlineQueryResultVideo copyWith({
String? id,
Video? video,
String? title,
String? description,
}) =>
InlineQueryResultVideo(
id: id ?? this.id,
video: video ?? this.video,
title: title ?? this.title,
description: description ?? this.description,
);