AvatarWidget.fromContact constructor

AvatarWidget.fromContact(
  1. ChatContact? contact, {
  2. Key? key,
  3. Avatar? avatar,
  4. AvatarRadius? radius,
  5. double opacity = 1,
})

Creates an AvatarWidget from the specified contact.

Implementation

factory AvatarWidget.fromContact(
  ChatContact? contact, {
  Key? key,
  Avatar? avatar,
  AvatarRadius? radius,
  double opacity = 1,
}) => AvatarWidget(
  key: key,
  avatar: avatar,
  title: contact?.name.val,
  color:
      (contact?.users.isEmpty ?? false)
          ? contact?.name.val.sum()
          : contact?.users.first.num.val.sum(),
  radius: radius,
  opacity: opacity,
);