copyWith method

  1. @override
InlineQueryResultVoiceNote copyWith({
  1. String? id,
  2. VoiceNote? voiceNote,
  3. String? title,
})
override

Implementation

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