KdbxFile constructor

KdbxFile(
  1. KdbxReadWriteContext ctx,
  2. KdbxFormat kdbxFormat,
  3. Credentials _credentials,
  4. KdbxHeader header,
  5. KdbxBody body,
)

Implementation

KdbxFile(
  this.ctx,
  this.kdbxFormat,
  this._credentials,
  this.header,
  this.body,
) {
  for (final obj in _allObjects) {
    obj.file = this;
  }
}