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