copyWith method
Implementation
@override
InlineQueryResultVoiceNote copyWith({
  String? id,
  VoiceNote? voiceNote,
  String? title,
}) => InlineQueryResultVoiceNote(
  id: id ?? this.id,
  voiceNote: voiceNote ?? this.voiceNote,
  title: title ?? this.title,
);