Tenant constructor

Tenant({
  1. String? externalId,
  2. String? name,
})

Implementation

Tenant({
  this.externalId,
  this.name,
});