copyWith method

WebApiModulesWarehouseCheckInSerialNumbers copyWith({
  1. String? serialNumber,
  2. String? itemStatus,
  3. bool? inSession,
  4. bool? qCRequired,
  5. int? orderTranId,
  6. String? internalChar,
  7. String? orderId,
  8. String? orderItemId,
  9. String? inventoryId,
  10. String? vendorId,
  11. String? description,
  12. int? quantity,
})

Implementation

WebApiModulesWarehouseCheckInSerialNumbers copyWith({
  String? serialNumber,
  String? itemStatus,
  bool? inSession,
  bool? qCRequired,
  int? orderTranId,
  String? internalChar,
  String? orderId,
  String? orderItemId,
  String? inventoryId,
  String? vendorId,
  String? description,
  int? quantity,
}) {
  return WebApiModulesWarehouseCheckInSerialNumbers(
    serialNumber: serialNumber ?? this.serialNumber,
    itemStatus: itemStatus ?? this.itemStatus,
    inSession: inSession ?? this.inSession,
    qCRequired: qCRequired ?? this.qCRequired,
    orderTranId: orderTranId ?? this.orderTranId,
    internalChar: internalChar ?? this.internalChar,
    orderId: orderId ?? this.orderId,
    orderItemId: orderItemId ?? this.orderItemId,
    inventoryId: inventoryId ?? this.inventoryId,
    vendorId: vendorId ?? this.vendorId,
    description: description ?? this.description,
    quantity: quantity ?? this.quantity,
  );
}