copyWith method
WebApiModulesWarehouseCheckInReconcileReconcileItemsResponse
copyWith({
- bool? success,
- List<
WebApiModulesWarehouseCheckInReconcileReconcileICode> ? items, - List<
WebApiModulesWarehouseCheckInReconcileReconcileItemError> ? errors,
Implementation
WebApiModulesWarehouseCheckInReconcileReconcileItemsResponse copyWith({
bool? success,
List<WebApiModulesWarehouseCheckInReconcileReconcileICode>? items,
List<WebApiModulesWarehouseCheckInReconcileReconcileItemError>? errors,
}) {
return WebApiModulesWarehouseCheckInReconcileReconcileItemsResponse(
success: success ?? this.success,
items: items ?? this.items,
errors: errors ?? this.errors,
);
}