parent property

Loggy<LoggyType>? parent

Implementation

Loggy? get parent {
  if (_parent != null) {
    return _parent;
  }

  return this;
}