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