KdbxObject.create constructor

KdbxObject.create(
  1. KdbxReadWriteContext ctx,
  2. KdbxFile? _file,
  3. String nodeName,
  4. KdbxGroup? parent,
)

Implementation

KdbxObject.create(
  this.ctx,
  this._file,
  String nodeName,
  KdbxGroup? parent,
)   : times = KdbxTimes.create(ctx),
      _parent = parent,
      super.create(nodeName) {
  _uuid.set(KdbxUuid.random());
}