User constructor

User({
  1. String? userId,
  2. required String companyId,
  3. String? functionId,
  4. required String status,
  5. String? emailAddress,
  6. String? timezone,
  7. String? dateCreated,
  8. String? lastUpdated,
  9. String? active,
})

Returns a new User instance.

Implementation

User({
  this.userId,
  required this.companyId,
  this.functionId,
  required this.status,
  this.emailAddress,
  this.timezone,
  this.dateCreated,
  this.lastUpdated,
  this.active,
});