copyWith method

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

Implementation

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