Service constructor

Service({
  1. String? code,
  2. bool? disabled,
  3. String? photoURL,
  4. String? name,
  5. String? description,
  6. String? notes,
  7. int? quantity,
  8. double? price,
  9. String? measureId,
  10. String? reference,
})

Implementation

Service({
  super.code,
  this.disabled,
  this.photoURL,
  super.name,
  super.description,
  super.notes,
  super.quantity,
  //super.discountRate,
  super.price,
  super.measureId,
  super.reference,
});