copyWith method
Implementation
UpdateFileDownloads copyWith({
int? totalSize,
int? totalCount,
int? downloadedSize,
}) => UpdateFileDownloads(
totalSize: totalSize ?? this.totalSize,
totalCount: totalCount ?? this.totalCount,
downloadedSize: downloadedSize ?? this.downloadedSize,
);