AvatarWidget.fromChat constructor
Creates an AvatarWidget from the specified Chat and its parameters.
Implementation
factory AvatarWidget.fromChat(
Chat? chat,
String? title,
Avatar? avatar,
UserId? me, {
Key? key,
AvatarRadius? radius,
double opacity = 1,
}) => AvatarWidget(
key: key,
avatar: avatar,
title: title,
color: chat?.colorDiscriminant(me).sum(),
radius: radius,
opacity: opacity,
);