Users constructor

Users({
  1. String? sId,
  2. String? path,
  3. String? displayName,
  4. String? updatedAt,
  5. String? createdAt,
  6. String? userId,
  7. List<String>? roles,
  8. int? flagCount,
})

Implementation

Users({
  this.sId,
  this.path,
  this.displayName,
  this.updatedAt,
  this.createdAt,
  this.userId,
  this.roles,
  this.flagCount,
});