copyWith method

WebApiModulesWarehouseCheckInReconcileReconcileItemError copyWith({
  1. String? description,
  2. String? vendorId,
  3. int? status,
  4. String? message,
})

Implementation

WebApiModulesWarehouseCheckInReconcileReconcileItemError copyWith(
    {String? description, String? vendorId, int? status, String? message}) {
  return WebApiModulesWarehouseCheckInReconcileReconcileItemError(
      description: description ?? this.description,
      vendorId: vendorId ?? this.vendorId,
      status: status ?? this.status,
      message: message ?? this.message);
}