Service constructor

Service({
  1. String? businessEntityName,
  2. String? displayName,
  3. String? name,
  4. String? serviceId,
})

Implementation

Service({
  this.businessEntityName,
  this.displayName,
  this.name,
  this.serviceId,
});