appendRecord method
Implementation
void appendRecord(BuildContext context, List<Widget> widgets, Post post,
{double? fontSize}) {
FacetLink facetLink = FacetLink(post.record, context, fontSize: fontSize);
Widget text = Row(
children: [
Expanded(child: facetLink.withLink),
],
);
widgets.add(Detector.instance(context, text).thread(post.author, post.uri));
}