Message constructor

Message({
  1. String author = '',
  2. required String content,
  3. CitationMetadata? citationMetadata,
})

Implementation

Message({this.author = '', required this.content, this.citationMetadata})
  : super(fullyQualifiedName);