copyWith method
Implementation
@override
InlineQueryResultAnimation copyWith({
String? id,
Animation? animation,
String? title,
}) => InlineQueryResultAnimation(
id: id ?? this.id,
animation: animation ?? this.animation,
title: title ?? this.title,
);