copyWithWrapped method

WebApiModulesWarehouseCheckOutCreateOutContractResponse copyWithWrapped({
  1. Wrapped<int?>? status,
  2. Wrapped<bool?>? success,
  3. Wrapped<String?>? msg,
  4. Wrapped<String?>? contractId,
})

Implementation

WebApiModulesWarehouseCheckOutCreateOutContractResponse copyWithWrapped(
    {Wrapped<int?>? status,
    Wrapped<bool?>? success,
    Wrapped<String?>? msg,
    Wrapped<String?>? contractId}) {
  return WebApiModulesWarehouseCheckOutCreateOutContractResponse(
      status: (status != null ? status.value : this.status),
      success: (success != null ? success.value : this.success),
      msg: (msg != null ? msg.value : this.msg),
      contractId: (contractId != null ? contractId.value : this.contractId));
}