copyWith method
Implementation
FwStandardModulesAdministratorSystemUpdateDownloadBuildDocumentResponse
copyWith({int? status, bool? success, String? msg, String? downloadUrl}) {
return FwStandardModulesAdministratorSystemUpdateDownloadBuildDocumentResponse(
status: status ?? this.status,
success: success ?? this.success,
msg: msg ?? this.msg,
downloadUrl: downloadUrl ?? this.downloadUrl,
);
}