copyWith method
DraftMessageContentVoiceNote
copyWith({
- String? filePath,
- int? duration,
- String? waveform,
- MessageSelfDestructType? selfDestructType,
Implementation
DraftMessageContentVoiceNote copyWith({
String? filePath,
int? duration,
String? waveform,
MessageSelfDestructType? selfDestructType,
}) => DraftMessageContentVoiceNote(
filePath: filePath ?? this.filePath,
duration: duration ?? this.duration,
waveform: waveform ?? this.waveform,
selfDestructType: selfDestructType ?? this.selfDestructType,
);