content method
Implementation
@override
List<Widget> content(Post post) {
return [
Header(author: post.author, createdAt: post.record.createdAt),
replyHeader(post.author.displayName ?? getAccount(post.author.handle)),
Body(post: post),
Footer(post: post),
];
}