copyWith method
Implementation
DownloadFileOptions copyWith({
String? downloadUrl,
String? fileName,
String? customSavePath,
}) {
return DownloadFileOptions(
downloadUrl: downloadUrl ?? this.downloadUrl,
fileName: fileName ?? this.fileName,
customSavePath: customSavePath ?? this.customSavePath,
);
}