SalesItemLine constructor

SalesItemLine({
  1. String? id,
  2. String? detailType,
  3. double? amount,
  4. String? description,
  5. int? lineNum,
  6. SalesItemLineDetail? salesItemLineDetail,
})

Implementation

SalesItemLine({
  this.id, this.detailType, this.amount, this.description,
  this.lineNum, this.salesItemLineDetail
});