avatarContent method

Widget avatarContent(
  1. Widget body
)

Implementation

Widget avatarContent(Widget body) {
  return paddingLR([
    Avatar(state.context).net(author).profile
  ], [
    Header(author: author, createdAt: notification.indexedAt)
        .build(state.context),
    body,
  ]);
}