copyWith method

  1. @override
ChatActionUploadingVoiceNote copyWith({
  1. int? progress,
})
override

Implementation

@override
ChatActionUploadingVoiceNote copyWith({
  int? progress,
}) =>
    ChatActionUploadingVoiceNote(
      progress: progress ?? this.progress,
    );