copyWith method

WebApiModulesWarehouseCheckInReconcileReconcileOrder copyWith({
  1. String? orderNumber,
  2. String? description,
  3. String? dueDate,
  4. int? count,
  5. int? stillOut,
  6. String? vendor,
  7. String? orderId,
  8. String? vendorId,
  9. int? quantity,
})

Implementation

WebApiModulesWarehouseCheckInReconcileReconcileOrder copyWith({
  String? orderNumber,
  String? description,
  String? dueDate,
  int? count,
  int? stillOut,
  String? vendor,
  String? orderId,
  String? vendorId,
  int? quantity,
}) {
  return WebApiModulesWarehouseCheckInReconcileReconcileOrder(
    orderNumber: orderNumber ?? this.orderNumber,
    description: description ?? this.description,
    dueDate: dueDate ?? this.dueDate,
    count: count ?? this.count,
    stillOut: stillOut ?? this.stillOut,
    vendor: vendor ?? this.vendor,
    orderId: orderId ?? this.orderId,
    vendorId: vendorId ?? this.vendorId,
    quantity: quantity ?? this.quantity,
  );
}