MailFolder constructor

MailFolder({
  1. String? id,
  2. String? displayName,
  3. int? childFolderCount,
  4. int? totalItemCount,
  5. int? unreadItemCount,
  6. String? parentFolderId,
})

Implementation

MailFolder({
  this.id,
  this.displayName,
  this.childFolderCount,
  this.totalItemCount,
  this.unreadItemCount,
  this.parentFolderId,
});