AvatarWidget.fromMonolog constructor
Creates an AvatarWidget from the specified chat
-monolog.
Implementation
factory AvatarWidget.fromMonolog(
Chat? chat,
UserId? me, {
Key? key,
AvatarRadius? radius,
double opacity = 1,
BoxShape shape = BoxShape.circle,
}) => AvatarWidget(
key: key,
label: LayoutBuilder(
builder: (context, constraints) {
return SvgIcon(
SvgIcons.notes,
width: constraints.maxWidth,
height: constraints.maxWidth / 2,
);
},
),
avatar: chat?.avatar,
color: 0,
radius: radius,
opacity: opacity,
shape: shape,
);