QCSampleWithMetadata constructor
QCSampleWithMetadata({
- QCSample? qcSample,
- Family? family,
- QCGroup? qcGroup,
- GenericInventory? inventoryItem,
Implementation
factory QCSampleWithMetadata({
QCSample? qcSample,
$3.Family? family,
$4.QCGroup? qcGroup,
$5.GenericInventory? inventoryItem,
}) {
final result = create();
if (qcSample != null) result.qcSample = qcSample;
if (family != null) result.family = family;
if (qcGroup != null) result.qcGroup = qcGroup;
if (inventoryItem != null) result.inventoryItem = inventoryItem;
return result;
}