copyWith method

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

Implementation

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