FileLabels constructor

FileLabels({
  1. bool? hidden,
  2. bool? modified,
  3. bool? restricted,
  4. bool? starred,
  5. bool? trashed,
  6. bool? viewed,
})

Implementation

FileLabels({
  this.hidden,
  this.modified,
  this.restricted,
  this.starred,
  this.trashed,
  this.viewed,
});