copyWith method
Implementation
SoftwareInfoDTO copyWith(
{SelfLinkDTO? links,
String? buildChangeSet,
DateDTO? buildDate,
bool? isLicensedForUse,
String? platformVersion,
String? version}) {
return SoftwareInfoDTO(
links: links ?? this.links,
buildChangeSet: buildChangeSet ?? this.buildChangeSet,
buildDate: buildDate ?? this.buildDate,
isLicensedForUse: isLicensedForUse ?? this.isLicensedForUse,
platformVersion: platformVersion ?? this.platformVersion,
version: version ?? this.version,
);
}