file property

KdbxFile file
inherited

the file this object is part of. will be set AFTER loading, etc.

Implementation

KdbxFile get file => _file!;
  1. @override
void file=(KdbxFile file)
override

Implementation

@override
set file(KdbxFile file) {
  super.file = file;
  // TODO this looks like some weird workaround, get rid of the
  // `file` reference.
  for (final historyEntry in history) {
    historyEntry.file = file;
  }
}