UserList constructor

UserList({
  1. String? clientId,
  2. DateTime? createdAt,
  3. String? email,
  4. String? fcmToken,
  5. String? firstName,
  6. dynamic isActive,
  7. dynamic isDeleted,
  8. String? lastName,
  9. String? name,
  10. String? phone,
  11. String? profilePicture,
  12. String? roleId,
  13. String? secretKey,
  14. DateTime? updatedAt,
  15. String? userId,
  16. String? username,
})

Implementation

UserList({
  this.clientId,
  this.createdAt,
  this.email,
  this.fcmToken,
  this.firstName,
  this.isActive,
  this.isDeleted,
  this.lastName,
  this.name,
  this.phone,
  this.profilePicture,
  this.roleId,
  this.secretKey,
  this.updatedAt,
  this.userId,
  this.username,
});