FAvatar constructor
      
      FAvatar({ 
    
- required ImageProvider<Object> image,
- FAvatarStyle style()?,
- double size = 40.0,
- String? semanticsLabel,
- Widget? fallback,
- Key? key,
Creates an FAvatar.
Implementation
FAvatar({
  required ImageProvider image,
  this.style,
  this.size = 40.0,
  String? semanticsLabel,
  Widget? fallback,
  super.key,
}) : child = Content(style: style, size: size, image: image, semanticsLabel: semanticsLabel, fallback: fallback);