WAvatar constructor

const WAvatar({
  1. Key? key,
  2. String? className,
  3. double? radius,
  4. Color? backgroundColor,
  5. Color? foregroundColor,
  6. ImageProvider<Object>? backgroundImage,
  7. Widget? child,
  8. double? minRadius,
  9. double? maxRadius,
})

Implementation

const WAvatar({
  super.key,
  this.className,
  this.radius,
  this.backgroundColor,
  this.foregroundColor,
  this.backgroundImage,
  this.child,
  this.minRadius,
  this.maxRadius,
});