Data constructor

Data({
  1. String? id,
  2. String? saleOrderId,
})

Implementation

Data({
  this.id,
  this.saleOrderId,
});