copyWith method

  1. @override
InputMessageVoiceNote copyWith({
  1. InputFile? voiceNote,
  2. int? duration,
  3. String? waveform,
  4. FormattedText? caption,
})
override

Implementation

@override
InputMessageVoiceNote copyWith({
  InputFile? voiceNote,
  int? duration,
  String? waveform,
  FormattedText? caption,
}) => InputMessageVoiceNote(
  voiceNote: voiceNote ?? this.voiceNote,
  duration: duration ?? this.duration,
  waveform: waveform ?? this.waveform,
  caption: caption ?? this.caption,
);