FAvatar.raw constructor

FAvatar.raw({
  1. Widget? child,
  2. FAvatarStyle? style,
  3. double size = 40.0,
  4. Key? key,
})

Creates a FAvatar without a fallback.

Implementation

FAvatar.raw({
  Widget? child,
  this.style,
  this.size = 40.0,
  super.key,
}) : child = child ?? PlaceholderContent(style: style, size: size);