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