timestamps property

Inline timestamps of current message

Implementation

Iterable<MessageTimeStamp> get timestamps sync* {
  for (final match in MessageTimeStamp.regex.allMatches(this.content)) {
    yield MessageTimeStamp._new(match);
  }
}