copyWith method
VerificationOfAsset
copyWith({
- ReportingInformation? reportinginformation,
- ServiceProductFulfillment? serviceproductfulfillment,
- VerificationOfAssetResponse? verificationofassetresponse,
Implementation
VerificationOfAsset copyWith(
{ReportingInformation? reportinginformation,
ServiceProductFulfillment? serviceproductfulfillment,
VerificationOfAssetResponse? verificationofassetresponse}) {
return VerificationOfAsset(
reportinginformation: reportinginformation ?? this.reportinginformation,
serviceproductfulfillment:
serviceproductfulfillment ?? this.serviceproductfulfillment,
verificationofassetresponse:
verificationofassetresponse ?? this.verificationofassetresponse);
}