Label constructor

Label({
  1. LabelColor? color,
  2. String? id,
  3. String? labelListVisibility,
  4. String? messageListVisibility,
  5. int? messagesTotal,
  6. int? messagesUnread,
  7. String? name,
  8. int? threadsTotal,
  9. int? threadsUnread,
  10. String? type,
})

Implementation

Label({
  this.color,
  this.id,
  this.labelListVisibility,
  this.messageListVisibility,
  this.messagesTotal,
  this.messagesUnread,
  this.name,
  this.threadsTotal,
  this.threadsUnread,
  this.type,
});