Category constructor

Category({
  1. String? displayName,
  2. List<MoreHoursType>? moreHoursTypes,
  3. String? name,
  4. List<ServiceType>? serviceTypes,
})

Implementation

Category({
  this.displayName,
  this.moreHoursTypes,
  this.name,
  this.serviceTypes,
});