FAvatarStyle.inherit constructor
FAvatarStyle.inherit({
- required FColors colors,
- required FIcons icons,
- required FTypography typography,
Creates a FAvatarStyle that inherits its properties.
Implementation
FAvatarStyle.inherit({required FColors colors, required FIcons icons, required FTypography typography})
: this(
backgroundColor: colors.muted,
foregroundColor: colors.mutedForeground,
textStyle: typography.sm.copyWith(color: colors.mutedForeground),
fallbackIcon: icons.userRound,
);