debuObj property

String get debuObj

Implementation

String get debuObj {
  String s = '';
  if (this.flags.isPost) s += 'POST ';
  if (this.flags.isReply) s += 'REPLY ';
  s += 'type: ' + this.type.toString();
  s += ' auth: ' + this.author.toString();
  s += ' shortlink: ' + this._shortlink.lengthInBytes.toString();
  s += ' keyh: ' + this.keyHint.toString();
  s += ' bl: ' + this.bl.toString();
  s += ' pp: ' + this.pp.toString();
  s += ' avatar: ' + this.avatar.toString();
  s += ' nick: ' + this.nick.toString();
  s += ' atlink: ' + this.attachmentLink.toString();
  s += ' flags: ' + this.flags.toString();
  s += ' perTS: ' + this.perceivedTimestamp.toString();
  return s;
}