header method

Widget header(
  1. BuildContext context
)

Implementation

Widget header(BuildContext context) {
  return Row(children: [
    Avatar(context).net(post.author).profile,
    Expanded(
        child: Padding(
            padding: const EdgeInsets.fromLTRB(15, 5, 5, 5),
            child: Header(
                author: post.author, createdAt: post.record.createdAt))),
  ]);
}