appendPost method
Implementation
void appendPost(BuildContext context, List<Widget> widgets, Post post) {
PostTL tl = customPostTL ?? PostTimeline();
tl.setPost(post);
widgets.add(tl.build(context));
}
void appendPost(BuildContext context, List<Widget> widgets, Post post) {
PostTL tl = customPostTL ?? PostTimeline();
tl.setPost(post);
widgets.add(tl.build(context));
}