copyWithWrapped method

Implementation

WebApiModulesUtilitiesMigrateCompleteMigrateSessionResponse copyWithWrapped(
    {Wrapped<int?>? status,
    Wrapped<bool?>? success,
    Wrapped<String?>? msg,
    Wrapped<String?>? contractIds,
    Wrapped<List<WebApiModulesWarehouseContractContract>?>? contracts}) {
  return WebApiModulesUtilitiesMigrateCompleteMigrateSessionResponse(
      status: (status != null ? status.value : this.status),
      success: (success != null ? success.value : this.success),
      msg: (msg != null ? msg.value : this.msg),
      contractIds:
          (contractIds != null ? contractIds.value : this.contractIds),
      contracts: (contracts != null ? contracts.value : this.contracts));
}