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