Folder constructor

Folder({
  1. String? accountId,
  2. String? containerId,
  3. String? fingerprint,
  4. String? folderId,
  5. String? name,
})

Implementation

Folder({
  this.accountId,
  this.containerId,
  this.fingerprint,
  this.folderId,
  this.name,
});