AvatarWidget.fromUser constructor
- User? user, {
- Key? key,
- AvatarRadius? radius,
- double opacity = 1,
- 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,
);