Tenant constructor

Tenant({
  1. String? email,
  2. int? userId,
  3. String? name,
  4. String? website,
  5. String? access,
  6. String? text,
  7. DateTime? createdAt,
})

Implementation

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