AvatarWidget.fromUser constructor

AvatarWidget.fromUser(
  1. User? user, {
  2. Key? key,
  3. AvatarRadius? radius,
  4. double opacity = 1,
  5. BoxShape shape = BoxShape.circle,
})

Creates an AvatarWidget from the specified user.

Implementation

factory AvatarWidget.fromUser(
  User? user, {
  Key? key,
  AvatarRadius? radius,
  double opacity = 1,
  BoxShape shape = BoxShape.circle,
}) => AvatarWidget(
  key: key,
  avatar: user?.avatar,
  title: user?.title,
  color: user?.num.val.sum(),
  radius: radius,
  opacity: opacity,
  shape: shape,
);