copyWith method

VerificationOfAsset copyWith({
  1. ReportingInformation? reportinginformation,
  2. ServiceProductFulfillment? serviceproductfulfillment,
  3. 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);
}