ServiceId constructor

ServiceId({
  1. String? accountId,
  2. String? name,
  3. List<String>? names,
  4. String? type,
})

Implementation

ServiceId({
  this.accountId,
  this.name,
  this.names,
  this.type,
});