Service constructor

Service({
  1. List<Category>? categories,
  2. String? code,
  3. String? name,
})

Implementation

Service({
  this.categories,
  this.code,
  this.name,
});