DebitNotesServiceMultipleItemsSingleton constructor
DebitNotesServiceMultipleItemsSingleton({
- Int64? familyId,
- Int64? internalQuantity,
- Int64? vendorUomId,
- Int64? vendorQuantity,
- Int64? vendorUnitPrice,
- Int64? taxGroupId,
- Int64? roundOff,
- String? specifications,
Implementation
factory DebitNotesServiceMultipleItemsSingleton({
$fixnum.Int64? familyId,
$fixnum.Int64? internalQuantity,
$fixnum.Int64? vendorUomId,
$fixnum.Int64? vendorQuantity,
$fixnum.Int64? vendorUnitPrice,
$fixnum.Int64? taxGroupId,
$fixnum.Int64? roundOff,
$core.String? specifications,
}) {
final result = create();
if (familyId != null) result.familyId = familyId;
if (internalQuantity != null) result.internalQuantity = internalQuantity;
if (vendorUomId != null) result.vendorUomId = vendorUomId;
if (vendorQuantity != null) result.vendorQuantity = vendorQuantity;
if (vendorUnitPrice != null) result.vendorUnitPrice = vendorUnitPrice;
if (taxGroupId != null) result.taxGroupId = taxGroupId;
if (roundOff != null) result.roundOff = roundOff;
if (specifications != null) result.specifications = specifications;
return result;
}