postTL method

Widget postTL(
  1. BuildContext context,
  2. Post post
)

Implementation

Widget postTL(BuildContext context, Post post) {
  return paddingLR([
    Avatar(context).net(post.author).profile,
  ], content(post));
}