AvatarWidget.fromMonolog constructor

AvatarWidget.fromMonolog(
  1. Chat? chat,
  2. UserId? me, {
  3. Key? key,
  4. AvatarRadius? radius,
  5. double opacity = 1,
  6. BoxShape shape = BoxShape.circle,
})

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