AvatarWidget.fromChat constructor

AvatarWidget.fromChat(
  1. Chat? chat,
  2. String? title,
  3. Avatar? avatar,
  4. UserId? me, {
  5. Key? key,
  6. AvatarRadius? radius,
  7. double opacity = 1,
})

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,
);