Service constructor

Service({
  1. int? serviceId,
  2. String? serviceName,
  3. String? serviceDescription,
  4. String? ssu,
  5. String? servicePrice,
  6. int? stock,
  7. String? serviceSpecialPrice,
  8. String? specialPriceStart,
  9. String? specialPriceEnd,
  10. String? taxType,
  11. String? isPublished,
  12. String? vendor,
})

Implementation

Service(
    {this.serviceId,
    this.serviceName,
    this.serviceDescription,
    this.ssu,
    this.servicePrice,
    this.stock,
    this.serviceSpecialPrice,
    this.specialPriceStart,
    this.specialPriceEnd,
    this.taxType,
    this.isPublished,
    this.vendor});