copyWith method
WebApiModulesInventoryInventoryReceiptUnassignItemsResponse
copyWith({
- List<
WebApiModulesInventoryInventoryReceiptUnassignItemResponse> ? items, - bool? success,
Implementation
WebApiModulesInventoryInventoryReceiptUnassignItemsResponse copyWith({
List<WebApiModulesInventoryInventoryReceiptUnassignItemResponse>? items,
bool? success,
}) {
return WebApiModulesInventoryInventoryReceiptUnassignItemsResponse(
items: items ?? this.items,
success: success ?? this.success,
);
}