Record constructor

Record({
  1. String? id,
  2. String? role,
  3. String? username,
  4. String? dateFormat,
  5. String? timezone,
  6. String? schName,
  7. String? currencySymbol,
  8. Language? language,
  9. String? isRtl,
  10. String? theme,
  11. String? image,
  12. String? startWeek,
  13. List<ParentChilds>? parentChilds,
})

Implementation

Record({
  this.id,
  this.role,
  this.username,
  this.dateFormat,
  this.timezone,
  this.schName,
  this.currencySymbol,
  this.language,
  this.isRtl,
  this.theme,
  this.image,
  this.startWeek,
  this.parentChilds,
});