copyWithWrapped method
VerificationOfAsset
copyWithWrapped({
- Wrapped<
ReportingInformation> ? reportinginformation, - Wrapped<
ServiceProductFulfillment> ? serviceproductfulfillment, - Wrapped<
VerificationOfAssetResponse> ? verificationofassetresponse,
Implementation
VerificationOfAsset copyWithWrapped(
{Wrapped<ReportingInformation>? reportinginformation,
Wrapped<ServiceProductFulfillment>? serviceproductfulfillment,
Wrapped<VerificationOfAssetResponse>? verificationofassetresponse}) {
return VerificationOfAsset(
reportinginformation: (reportinginformation != null
? reportinginformation.value
: this.reportinginformation),
serviceproductfulfillment: (serviceproductfulfillment != null
? serviceproductfulfillment.value
: this.serviceproductfulfillment),
verificationofassetresponse: (verificationofassetresponse != null
? verificationofassetresponse.value
: this.verificationofassetresponse));
}