copyWith method
InputMessageVoiceNote
copyWith({
- InputVoiceNote? voiceNote,
- FormattedText? caption,
- MessageSelfDestructType? selfDestructType,
Implementation
InputMessageVoiceNote copyWith({
InputVoiceNote? voiceNote,
FormattedText? caption,
MessageSelfDestructType? selfDestructType,
}) => InputMessageVoiceNote(
voiceNote: voiceNote ?? this.voiceNote,
caption: caption ?? this.caption,
selfDestructType: selfDestructType ?? this.selfDestructType,
);