appendPost method

void appendPost(
  1. BuildContext context,
  2. List<Widget> widgets,
  3. Post post
)

Implementation

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