copyWithWrapped method
Implementation
SoftwareVersion$Response copyWithWrapped(
{Wrapped<String?>? softwareVersion}) {
return SoftwareVersion$Response(
softwareVersion: (softwareVersion != null
? softwareVersion.value
: this.softwareVersion));
}