Tenant constructor

Tenant({
  1. String? email,
  2. int? userId,
  3. String? name,
  4. String? access,
})

Implementation

Tenant({
    this.email,
    this.userId,
    this.name,
    this.logo,
    this.access,
});