WidgetCircleAvatar constructor

const WidgetCircleAvatar({
  1. Key? key,
  2. double borderWidth = 2,
  3. Color? borderColor,
  4. String? url,
  5. required double radius,
  6. List<BoxShadow>? boxShadow,
  7. Widget? child,
  8. Color? backgroundColor,
})

Implementation

const WidgetCircleAvatar({
  super.key,
  this.borderWidth = 2,
  this.borderColor,
  this.url,
  required this.radius,
  this.boxShadow,
  this.child,
  this.backgroundColor,
});