copyWith method

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

Implementation

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